mirror of
https://github.com/Matir/skel.git
synced 2026-05-26 13:35:42 -07:00
10 lines
164 B
Bash
10 lines
164 B
Bash
function dmesg {
|
|
if [ $(id -u) -eq 0 ] ; then
|
|
command dmesg "$@"
|
|
elif id | grep -q '(sudo)' ; then
|
|
sudo dmesg "$@"
|
|
else
|
|
command dmesg "$@"
|
|
fi
|
|
}
|