Answers for "echo text to file"

6

bash add text to file

echo "hello world" >> my_file.txt
Posted by: Guest on February-24-2020
2

echo to file

echo "I am "Finding" difficult to write this to file" > file.txt
echo "I can "write" without double quotes" >> file.txt

echo "This is a test to write $PATH in my file" >> file.txt
echo 'This is a test to write '"$PATH"' in my file' >> file.txt

tee -a file.txt <<EOF

I am "Finding" difficult to write this to file
I can "write" without double quotes
EOF
Posted by: Guest on February-23-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language