Answers for "how to get specific lines of shell output"

1

how to get specific lines of shell output

sed -n '10,20p' york.txt
Posted by: Guest on April-02-2020
0

how to get specific lines of shell output

head -n 20 york.txt | tail -11
Posted by: Guest on April-02-2020

Code answers related to "how to get specific lines of shell output"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language