Files
skel/dotfiles/zshrc.d/dmesg.zsh
David Tomaschik 20a5885031 Cleanup
2026-02-12 16:13:01 -08:00

10 lines
167 B
Bash

function dmesg {
if [ $(id -u) -eq 0 ] ; then
command dmesg "$@"
elif sudo -n true 2>/dev/null ; then
sudo dmesg "$@"
else
command dmesg "$@"
fi
}