Last active
May 21, 2018 10:41
-
-
Save RushOnline/8f8760cdbffec3d78ef8afcef0c91c8b to your computer and use it in GitHub Desktop.
set comfortable dmesg args as defaults
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# | |
# put this file as /usr/local/bin/dmesg and make executable | |
# | |
if [ -n "$@" ]; then | |
/bin/dmesg $@ | |
else | |
/bin/dmesg -ukxTw | |
fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment