diff --git a/bin/cut b/bin/cut index d2fe4214..a377befa 100755 --- a/bin/cut +++ b/bin/cut @@ -23,14 +23,35 @@ License: perl $^W = 1; # -w use strict; -use Getopt::Std; -use File::Basename; -## What's my name? +use File::Basename qw(basename); +use Getopt::Std qw(getopts); + +use constant EX_SUCCESS => 0; +use constant EX_FAILURE => 1; + my $me = basename($0); -## Grab options -getopts ('b:c:d:f:ns', \my %opt); +sub usage { + print <