diff options
author | stanley lieber <stanley.lieber@gmail.com> | 2011-05-15 07:11:19 +0000 |
---|---|---|
committer | stanley lieber <stanley.lieber@gmail.com> | 2011-05-15 07:11:19 +0000 |
commit | c624a207e4f5436e9ee6d473b477930226f386a9 (patch) | |
tree | 6d8fc41f11a113e468be8bcae12512ad3b899ea7 /sys/src/cmd/pkg | |
parent | 55852fa53a24eab73e875fb50cd4a83c0e68aeb2 (diff) |
pkg/list: correct listing for file system directories
Diffstat (limited to 'sys/src/cmd/pkg')
-rwxr-xr-x | sys/src/cmd/pkg/list | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/src/cmd/pkg/list b/sys/src/cmd/pkg/list index f35036860..cdc8059f5 100755 --- a/sys/src/cmd/pkg/list +++ b/sys/src/cmd/pkg/list @@ -6,4 +6,4 @@ if(~ $#pkgpath 0) if(~ $pkgpath ftp* http*) hget $pkgpath | htmlfmt | grep '\.tbz' | sed -e 's/\.tbz$//' if not - ls -p $pkgpath + ls -p $pkgpath/*.tbz | sed 's/\.tbz//g' |