Answers for "echo many lines from a file"

3

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
4

find how many lines in a file linux

wc -l <filename>
Posted by: Guest on March-05-2021

Code answers related to "echo many lines from a file"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language