]> git.alrj.org Git - zsh.d.git/blob - S51_functions
[scm_breeze] Use scm_breeze if available.
[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