diff options
author | Florian Pritz <bluewind@xinu.at> | 2012-08-26 16:55:37 +0200 |
---|---|---|
committer | Florian Pritz <bluewind@xinu.at> | 2012-08-26 16:55:55 +0200 |
commit | f69d17a76c205a740b1e930b8f6394242b41dd87 (patch) | |
tree | b903f32e458353e4c85cabd06af5265ad0a9f685 | |
parent | 074227ca0bdcf6428f7fbc1cfbc78b35448b0a12 (diff) | |
download | bin-f69d17a76c205a740b1e930b8f6394242b41dd87.tar.gz bin-f69d17a76c205a740b1e930b8f6394242b41dd87.tar.xz |
add find-inodes
Signed-off-by: Florian Pritz <bluewind@xinu.at>
-rwxr-xr-x | find-inodes | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/find-inodes b/find-inodes new file mode 100755 index 0000000..c1ae848 --- /dev/null +++ b/find-inodes @@ -0,0 +1,3 @@ +#!/bin/sh +GLOBIGNORE=. +(for i in *; do echo -n "$i: "; find $i | wc -l; done) | sort -nk2 |