Answers for "append to a file from terminal"

0

append to a file from terminal

echo "text to append" >> filename

# for multiple lines
echo -e "line1\nline2\nline3" >> filename
Posted by: Guest on February-26-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language