I'm currently trying to add an empty line in here, the example of the command that I have so far
echo -e "my kernel version is $(uname -a) \nand the current date is $(date)"
how do I change the whole thing, so the output of this is
my kernel version is Linux centos7 3.10.0-1127.18.2.el7.x86_64 #1 SMP Sun Jul 26 15:27:06 UTC 2020 x86_64 x86_64 x86_64 GNU/Linux
*** empty line***
and the current date is Fri Apr 23 09:18:29 EEST 2021
echo -e "... \n\n..."
; see also Why is printf better than echo? – αғsнιη Apr 23 '21 at 13:24