Skip to content

Instantly share code, notes, and snippets.

@tofarley
Created December 12, 2019 20:36
Show Gist options
  • Save tofarley/5c582d56976bf1eb8322bb5613ce05bf to your computer and use it in GitHub Desktop.
Save tofarley/5c582d56976bf1eb8322bb5613ce05bf to your computer and use it in GitHub Desktop.
given the file:
```
this is a test
it is only a test
if this were an actual emergency
1
2
3
4
5
```
code:
```
line=$(cat test.txt | grep -n 'this' | tail -1 | cut -d: -f 1)
cat test.txt | sed -n ${line},$(expr ${line} + 5)p
```
output:
```
if this were an actual emergency
1
2
3
4
5
```
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment