tmkfilelist: give find an argument - plan9port - [fork] Plan 9 from user space | |
git clone git://src.adamsgaard.dk/plan9port | |
Log | |
Files | |
Refs | |
README | |
LICENSE | |
--- | |
commit 3df522ce763ba9b478c1c866ecfc5d00c20d23d3 | |
parent 4a8429a2bff8363d2ab0aa8913d9cd82f115c584 | |
Author: Albert Lee | |
Date: Mon, 1 Dec 2008 19:03:49 -0500 mkfilelist: give find an argument Diffstat: M dist/mkfilelist | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- | |
diff --git a/dist/mkfilelist b/dist/mkfilelist | |
t@@ -1,6 +1,6 @@ #!/usr/local/plan9/bin/rc -@{cd $PLAN9; find -type f -print; find -type d -print | sed 's;$;/;'} | +@{cd $PLAN9; find . -type f -print; find . -type d -print | sed 's;$;/;'} | sort | sed 's;^./;;' | grep . | awk -vplan9'='$PLAN9 ' function cat(s) { |