Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions bin/ar
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@ License: perl
use POSIX qw(strftime);
use File::Basename;
use FileHandle;
use Getopt::Std qw(getopts);

# allow the first arg to not have a '-'.
if ($ARGV[0] !~ /^\-/) { $ARGV[0] = '-' . $ARGV[0]; }

require "getopts.pl";
Getopts("dmpqrtxabciouv");
getopts('dmpqrtxabciouv') or usage();

# take only one of the following major opts
if (($opt_d + $opt_m + $opt_p + $opt_q + $opt_r + $opt_t + $opt_x) != 1) {
Expand Down