mirror of
https://github.com/Matir/skel.git
synced 2026-06-10 03:13:40 -07:00
8 lines
141 B
Bash
8 lines
141 B
Bash
function vmstat {
|
|
local _extra_args
|
|
if [ "$(tput cols)" -gt 80 ] ; then
|
|
_extra_args="-w"
|
|
fi
|
|
command vmstat ${_extra_args} "$@"
|
|
}
|