Pankaj wrote: > > hi all > i have a confusion > when we run multiple commands in one line, then which features of > linux are internally used? > say.. i am running > ls; ps -aux | grep squid; init 6;cd; ....etc in one line > then what is the order of execution of these commands inside the > computer? > and what features of linux i am using this time? (timeshaing, > multiprogramming?, or multitasking? or all) > and....what will be the order of execution if above commands are > sent by client computers (one command one client) to server to run? > > thanx > regards > pankaj > >
/when we run multiple commands in one line, then which features of linux are internally used?/ ** batch processing ** /then what is the order of execution of� these commands inside the computer?/ ** sequential ** /and....what will be the order of execution if above commands are sent by client computers (one command one client) to server to run?/ ** sequential; the order that they reach server (this may get complicated on parallel platforms!) ** / -- Muhammad Muzzamil Luqma

