Files
skel/dotfiles/zshrc.d/vmstat.zsh
David Tomaschik b37f95383c Wrap vmstat
2021-02-05 15:55:50 -08:00

8 lines
141 B
Bash

function vmstat {
local _extra_args
if [ "$(tput cols)" -gt 80 ] ; then
_extra_args="-w"
fi
command vmstat ${_extra_args} "$@"
}