New line after the command prompt

promptterminal

Is there any way I can configure terminal applications to display command text from front of $ to under the user name on terminal window? See image attached. I use terminator.

enter image description here

Best Answer

POSIXly:

$ NL='
'
$ PS1=${PS1}${NL}
$
<cursor here>
Related Question