Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- cat msg.txt
- type cat
- echo "$(<msg.txt)"
- type echo
- printf "%s\n" "$(<msg.txt)"
- type printf
- while read line
- do
- echo "$line"
- done < msg.txt
- while read line
- do
- echo "--$line--"
- done < msg.txt
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement