Skip to content

Instantly share code, notes, and snippets.

@chrisbodhi
Created August 23, 2015 19:46
Show Gist options
  • Select an option

  • Save chrisbodhi/2167d8e29732ddb3894b to your computer and use it in GitHub Desktop.

Select an option

Save chrisbodhi/2167d8e29732ddb3894b to your computer and use it in GitHub Desktop.
Bash scripts and shortcuts for my common Gulp tasks
# 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