Archive for June, 2009
- TECHPULP |
How to run multiple commands at once in bash shell
All commands can be just appended using a semicolon (;) to make the bash to run all the commands one after the other as shown below. [liz@techpulp ~]# make config; make; make release The above command is equivalent to running...