Created
September 25, 2014 23:10
-
-
Save anonymous/4a309b9e310d448ef6b7 to your computer and use it in GitHub Desktop.
Revisions
-
There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,10 @@ #!/bin/sh if [ $# -eq 0 ]; then echo "Usage: $0 script args ..." exit 1 fi SCRIPT=$1 shift env -i HOME="$HOME" PATH="$PATH" SHELL="$SHELL" "$SCRIPT" "$@"