Created
February 4, 2013 20:06
-
-
Save dex4er/4709265 to your computer and use it in GitHub Desktop.
Bash snippets
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
| die () { | |
| echo "$@" 1>&2 | |
| exit 1 | |
| } |
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
| template () { | |
| file=$1 | |
| eval "cat << EOF | |
| `cat template/$file` | |
| EOF | |
| " > output/$file | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment