linux - Executing multiple commands without using ; and &? -
i need run command ls , cal in single line
but need write without using & , ; symbols...
is there way write it?
you use backticks , echo
echo `ls` "`cal`" the double quotes keep echo destroying whitespace in cals output.
Comments
Post a Comment