Useful Linux Commands
##Running multiple commands in one command
To run multiple commands together in one single command add “&&” inbetween each command.
$>/home/user/script1.sh &&
/home/user/script2.sh &&
echo "DONE"
This will run each command one after another
blog comments powered by Disqus