2 lines
74 B
Bash
Executable file
2 lines
74 B
Bash
Executable file
#!/usr/bin/bash
|
|
find . -name "$1" | sed 's/[^/]\+$//' | uniq -c | sort -g
|