diff options
author | Florian Pritz <bluewind@xinu.at> | 2012-08-26 17:01:26 +0200 |
---|---|---|
committer | Florian Pritz <bluewind@xinu.at> | 2012-08-26 17:01:26 +0200 |
commit | 55e63d180847f2e745917da9dd31cd905da142e0 (patch) | |
tree | e5e812db45cf551232daf69efe4e90caa33dfe84 | |
parent | f69d17a76c205a740b1e930b8f6394242b41dd87 (diff) | |
download | bin-55e63d180847f2e745917da9dd31cd905da142e0.tar.gz bin-55e63d180847f2e745917da9dd31cd905da142e0.tar.xz |
find-inodes: fix missing quote
Signed-off-by: Florian Pritz <bluewind@xinu.at>
-rwxr-xr-x | find-inodes | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/find-inodes b/find-inodes index c1ae848..09a6049 100755 --- a/find-inodes +++ b/find-inodes @@ -1,3 +1,3 @@ #!/bin/sh GLOBIGNORE=. -(for i in *; do echo -n "$i: "; find $i | wc -l; done) | sort -nk2 +(for i in *; do echo -n "$i: "; find "$i" | wc -l; done) | sort -nk2 |