6 lines
204 B
Plaintext
6 lines
204 B
Plaintext
|
|
#!/bin/bash
|
||
|
|
|
||
|
|
# This is a convenience to the user of restricted shells, so they can redirect stdout to /dev/null
|
||
|
|
# Use like [ COMMAND | disco-shutup] ... doesn't do much for stderr, sorry.
|
||
|
|
|
||
|
|
cat > /dev/null
|