Created
April 25, 2017 12:44
-
-
Save theelous3/fb8c9211d61e0d314e54d3a63c49333a to your computer and use it in GitHub Desktop.
This file contains 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 | |
if test -t 1; then | |
exec 1>/dev/null | |
fi | |
if test -t 2; then | |
exec 2>/dev/null | |
fi | |
"$@" & |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment