Skip to content

Instantly share code, notes, and snippets.

@microwaves
Last active May 10, 2019 13:38
Show Gist options
  • Save microwaves/173f3d89aa40ad90249f9a3eb435e9fd to your computer and use it in GitHub Desktop.
Save microwaves/173f3d89aa40ad90249f9a3eb435e9fd to your computer and use it in GitHub Desktop.
fly fancyness for your shell
# fly login
function flo() {
fly login -t $1 -n $2 -c $3 -u $4 -p $5 -k
}
# fly get-pipeline
function fgp() {
fly -t $1 get-pipeline -p $2
}
# fly watch
function fwa() {
fly -t $1 watch -j $2 --build $3
}
# fly workers
function fwo() {
fly -t $1 workers
}
# fly builds
function fbu() {
fly -t $1 builds -j $2
}
# fly abort-build
function fab() {
fly -t $1 abort-build -j $2 --build $3
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment