Sunday, January 19, 2014
simple way to write to files from bash script
Method One
Within the bash script write
echo "what you want to write" > filePath/fileName
echo "What you want to append" >> filePath/fileName
Method Two
Within the bash script write
cat << EOF > filePath/fileName
Lines of the text that you want to write.
You can write any number of lines.
EOF
cat << EOF > filePath/fileName
Lines of the text that you want to append.
You can write any number of lines.
EOF
alternative link download
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment
Note: Only a member of this blog may post a comment.