Created
August 23, 2015 19:46
-
-
Save chrisbodhi/2167d8e29732ddb3894b to your computer and use it in GitHub Desktop.
Bash scripts and shortcuts for my common Gulp tasks
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
| # gulp-run.sh | |
| #!/bin/sh | |
| run() { | |
| gulp run --url="$1" | |
| } | |
| run $1 | |
| # alias gru="~/.oh-my-zsh/custom/gulp-run.sh" | |
| ############################################# | |
| # gulp-silent-run.sh | |
| #!/bin/sh | |
| silentRun() { | |
| gulp run --silent --url="$1" | |
| } | |
| silentRun $1 | |
| # alias grus="~/.oh-my-zsh/custom/gulp-silent-run.sh" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment