diff options
-rwxr-xr-x | find-inodes | 2 |
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 |