Answers for "print a specific line bash"

1

bash script to output a specific line of a file

/**
* A bash script to print at stdout line_number from file_name
* @line_number: the line number you want to print
* @file_name: the file you want to read from
*/

awk '{if(NR==line_number) print $0}' file_name
Posted by: Guest on August-19-2021
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 "print a specific line bash"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language