zsh: Use gsort in place of sort, if necessary
Alan Pearce alan@alanpearce.uk
Wed, 26 Apr 2017 17:02:48 +0200
1 files changed, 3 insertions(+), 1 deletions(-)
jump to
M zsh/.config/zsh/.zshrc → zsh/.config/zsh/.zshrc
@@ -108,8 +108,10 @@ bindkey '\e^b' backward-argument bindkey '\e^f' forward-argument bindkey '\e^k' kill-argument +sort=${commands[gsort]:-$commands[sort]} + ds () { - du -hd1 $1 | sort -h + du -hd1 $1 | $sort -h } # returns the first ghq root, whereas $GHQ_ROOT returns all