From 4cc50060b2ffda8bbf3874253255421783a39b28 Mon Sep 17 00:00:00 2001 From: hjp Date: Sun, 13 Feb 2000 18:42:02 +0000 Subject: [PATCH] Removed lspath (automatically generated from lspath.pl) --- lspath/lspath | 14 -------------- 1 file changed, 14 deletions(-) delete mode 100755 lspath/lspath diff --git a/lspath/lspath b/lspath/lspath deleted file mode 100755 index d04b3a6..0000000 --- a/lspath/lspath +++ /dev/null @@ -1,14 +0,0 @@ -#!/usr/bin/perl -w -use strict; - - -for my $p (@ARGV) { - - my @p = split (/\//, $p); - for (my $i = 0; $i < scalar(@p); $i++) { - my $pp = join("/", @p[0..$i]); - $pp = "/" if $pp eq ""; - - system("/bin/ls", "-ld", $pp); - } -}