summaryrefslogtreecommitdiffstats
path: root/find-inodes
diff options
context:
space:
mode:
Diffstat (limited to 'find-inodes')
-rwxr-xr-xfind-inodes2
1 files changed, 1 insertions, 1 deletions
diff --git a/find-inodes b/find-inodes
index 111c64e..133c407 100755
--- a/find-inodes
+++ b/find-inodes
@@ -2,7 +2,7 @@
GLOBIGNORE=.
(
for i in *; do
- a=$(find "$i" -xdev | wc -l)
+ a=$(find "./$i" -xdev | wc -l)
printf "%s" "${a%\n}"
printf " - %s\n" "$i"
done