Created
May 19, 2016 13:40
-
-
Save ivanhuay/98e0757e030f52cca82db4415ef01f69 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/bash | |
ERROR_FILE="$HOME/shell/error.log" | |
COMMAND="$1" | |
PARAMS="${@:2}" | |
FULL_COMMAND="$COMMAND $PARAMS" | |
$FULL_COMMAND 2>>$HOME/.silence/silence.log 1>/dev/null & | |
if [ $? = 0 ]; then | |
echo "$FULL_COMMAND running [$!]" | |
else | |
echo "Error" | |
fi | |
exit 0 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment