From: <[EMAIL PROTECTED]> > Shell scripting is native to the shell in which u right them and are > not portable more imp is difficult to implement even simple logic > ..but are very fast as they are native to OS.
Actually no. They are generaly not very fast. The reason is that the shell interpreter needs to create a new process for each and every commend you specify in the script and usualy parses and executes the script line by line. Which means that if you have a loop in the script the interpreter will parse the lines within the loop over and over again. So as soon as the script gets even a little bit more complex it gets much slower than a Perl script would be. Jenda ===== [EMAIL PROTECTED] === http://Jenda.Krynicky.cz ===== When it comes to wine, women and song, wizards are allowed to get drunk and croon as much as they like. -- Terry Pratchett in Sourcery -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] <http://learn.perl.org/> <http://learn.perl.org/first-response>