When I run a command like tail ~/SOMEFILE
I get, for example:
testenv@vps_1:~# tail ~/SOMEFILE
This is the content of SOMEFILE.
But what if I want to have a carriage return between: testenv@vps_1:~#
and the output of: This is the content of SOMEFILE.
So the final result would be like this:
testenv@vps_1:~# tail ~/SOMEFILE
This is the content of SOMEFILE.
Or this:
testenv@vps_1:~# tail ~/SOMEFILE
This is the content of SOMEFILE.
Or this:
testenv@vps_1:~# tail ~/SOMEFILE
This is the content of SOMEFILE.
Note: The first example show one line of spacing between the two parts, the second example show two lines, and the third three lines.
Is there a way to make sure the
tail
output (or any other output) for that matter would be spaced down as I've shown in the examples, just for this particular command (not for all commands of course), in Bash?
echo && echo && echo && tail
there is an even more aesthetic trick to add multiple empty lines (maybe there's a way to multiply anecho
or any other command for that matter). – Arcticooling Dec 21 '17 at 13:31