Added -i option to ls.

This commit is contained in:
hjp 2001-06-26 13:47:37 +00:00
parent 6279fc8ad3
commit 8f621c148a
1 changed files with 1 additions and 1 deletions

View File

@ -9,6 +9,6 @@ for my $p (@ARGV) {
my $pp = join("/", @p[0..$i]);
$pp = "/" if $pp eq "";
system("/bin/ls", "-ld", $pp);
system("/bin/ls", "-ldi", $pp);
}
}