echo -e "hello
world"
echo -e 'This is First Line
This is Second Line'
echo $'username=user
password=pass' > ~/samba-credentials
echo -e "hello
world"
# Output
/*
* hello
* world
*/
echo -e "Line 1
Line 2"
echo -en 'first line
second line
third line
' > file