]> git.alrj.org Git - zsh.d.git/blob - S51_functions
Add a wrapper for mc to stay in current directory upon exit
[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
7 hl() {
8   egrep --color=always "|$*"
9 }