is there ever a situation when you need a shell script instead of a perl script?

2002-01-04 Thread Booher Timothy B 1stLt AFRL/MNAC
Thanks, tim Timothy B Booher, Lt USAF, AFRL/MNAC 101 West Eglin Blvd, Suite 339 Eglin AFB FL 32542-6810 Phone: 850-882-8302 Ext. 3360 (DSN 872-) FAX: 850-882-2201

RE: is there ever a situation when you need a shell script instead of a perl script?

2002-01-04 Thread Dean Theophilou
1stLt AFRL/MNAC Cc: [EMAIL PROTECTED] Subject: Re: is there ever a situation when you need a shell script instead of a perl script? If you don't need the features of Perl, and all you're doing is executing other processes and whatnot, there's no need for Perl where shell will do. -- Jeff japhy Pinyan

RE: is there ever a situation when you need a shell script instead of a perl script?

2002-01-04 Thread Mike Gargiullo
PROTECTED]] Sent: Friday, January 04, 2002 11:56 AM To: [EMAIL PROTECTED] Subject: is there ever a situation when you need a shell script instead of a perl script? Thanks, tim Timothy B Booher, Lt USAF, AFRL/MNAC 101 West Eglin Blvd, Suite 339

Re: is there ever a situation when you need a shell script instead of a perl script?

2002-01-04 Thread Roger C Haslock
Trivially, when perl is not installed! - Original Message - From: Mike Gargiullo [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, January 04, 2002 5:02 PM Subject: RE: is there ever a situation when you need a shell script instead of a perl script? Need? I don't know... But I have

Re: is there ever a situation when you need a shell script instead of a perl script?

2002-01-04 Thread smoot
Roger C Haslock [EMAIL PROTECTED] said: Trivially, when perl is not installed! Shell scripts are useful where you need maximum portability. They can also be very complex. Take a look at an autoconf shell script sometime. Not something you would write by hand, but they are very portable