5 lines
64 B
Plaintext
5 lines
64 B
Plaintext
# Silently run a command
|
|
function q {
|
|
"$@" > /dev/null 2>&1
|
|
}
|