]> git.alrj.org Git - zsh.d.git/blob - S51_functions
Merge branch 'master' of git+ssh://syrtis.alrj.org/srv/git/zsh.d
[zsh.d.git] / S51_functions
1 #! /usr/bin/zsh
2
3 du_by() {
4   find . -iname $1 -print0 | du --files0-from=- -hc | tail -n 1
5 }
6