Skip to content

Latest commit

 

History

History
10 lines (8 loc) · 113 Bytes

bash-strings.md

File metadata and controls

10 lines (8 loc) · 113 Bytes

bash strings

newlines

STR=$'Hello\nWorld' # must be single quote here
echo "$STR"
Hello
World