Answers for "linux single line eof"

0

linux single line eof

$ cat - << someword
> Here you
> can
> write text with as many
> newlines as you want.
> someword
Here you
can
write text with as many
newlines as you want.
Posted by: Guest on February-26-2022
0

linux single line eof

If it has to be in one line without newlines use that:

echo -e "lalal:lalal\nopp:ttt\nggg:zzz" | sendmail -S "lalalal" -f "dailaakak" -au "kakakak"
echo -n interpretes escapes characters such as \n as a newline.
Posted by: Guest on February-26-2022

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language