Posts
 
Reputation
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
~193 People Reached
Favorite Forums
Favorite Tags
perl x 1

1 Posted Topic

Member Avatar for manju13

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 …

Member Avatar for John Bokma
0
193

The End.