Answers for "bash write to file specific line"

2

shell write multiple lines to file

#!/bin/bash

cat > /path/to/myfile <<EOL
write whatever youwant
with multiple lines
... 
EOL
Posted by: Guest on August-07-2020
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

Code answers related to "bash write to file specific line"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language