Joined
Last Seen
0 Reputation Points
Unknown Quality Score
No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
0 Endorsements
Ranked #107.70K
1 Posted Topic
An even cleaner one: [code] #!/usr/local/bin/perl use strict; use warnings; @ARGV == 3 or die "usage: check1.pl DIR AUTOMATIC SKIP"; my ( $dir, $run_automatic, $skip_case_clean ) = @ARGV; -d $dir and print "Directory is $dir\n\n"; $run_automatic eq 'n' and print "No run automatic.\n\n"; $skip_case_clean eq 'n' and print "No skipping …
The End.
John Bokma