In bash, some commands put their stdout BEFORE the command prompt and on the SAME line. For example:
$ printf message
message$
$ gettext -d gtk20 File
Fichier$
I want the stdout on a dedicated line with the command prompt on the NEXT line. I could precede with 'echo' and wrap in back ticks like this, but I wonder if there is a better way (an arg that can be always/often used, etc):
$ echo `printf message`
message
$
$ echo `gettext -d gtk20 File`
Fichier
$