Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR SHELL

pipe multi-line string into file

# possibility 1:
echo "line 1" >> greetings.txt
echo "line 2" >> greetings.txt

# possibility 2:
echo "line 1
line 2" >> greetings.txt

# possibility 3:
cat <<EOT >> greetings.txt
line 1
line 2
EOT
Source by unix.stackexchange.com #
 
PREVIOUS NEXT
Tagged: #pipe #string #file
ADD COMMENT
Topic
Name
3+3 =