From 8f621c148acf78024d3b59c7989d97f9cff86a9e Mon Sep 17 00:00:00 2001 From: hjp Date: Tue, 26 Jun 2001 13:47:37 +0000 Subject: [PATCH] Added -i option to ls. --- lspath/lspath.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lspath/lspath.pl b/lspath/lspath.pl index 7b0442f..af81d59 100755 --- a/lspath/lspath.pl +++ b/lspath/lspath.pl @@ -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); } }