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
tailoutput (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?