How can I output a multipline string in Bash without using multiple echo calls like so:
echo \"usage: up [--level | -n ][--help][--version
Use the -e argument and the escape character \n:
echo -e "This will generate a next line \nThis new line is the result"