Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #Считать файл построчно
- #!/bin/bash
- FILE=$1
- while read line; do
- echo "This is a line : $line"
- done < $FILE
- ###################
- #run
- #./script /target/file
- ###################
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement