Last active
May 10, 2019 13:38
-
-
Save microwaves/173f3d89aa40ad90249f9a3eb435e9fd to your computer and use it in GitHub Desktop.
fly fancyness for your shell
This file contains 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
# 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