Last active
August 29, 2015 14:04
-
-
Save timuruski/9dc5c8a07594223fc9cf to your computer and use it in GitHub Desktop.
Replace bulky "git-like" libraries with a directory of scripts and an entry point.
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 characters
#!/usr/bin/env bash | |
SCRIPT="script/myapp-${1}.sh" | |
shift | |
exec ${SCRIPT} ${@} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment