Skip to content

Instantly share code, notes, and snippets.

@fobiasmog
Last active July 10, 2024 09:45
Show Gist options
  • Save fobiasmog/f9a262fc2f71da4f7f991a5748a031fa to your computer and use it in GitHub Desktop.
Save fobiasmog/f9a262fc2f71da4f7f991a5748a031fa to your computer and use it in GitHub Desktop.

Git

alias gits="git status"
alias gitp="gits | grep -oP 'On branch\s(.*)$' | sed 's/On branch\s//' | xargs git pull origin"

AWS

alias ...-start='aws --profile ... ec2 start-instances --instance-ids i-...'
alias ...-stop='aws --profile ... ec2 stop-instances --instance-ids i-...'
alias ...-status='aws --profile ... ec2 describe-instance-status --instance-ids i-...'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment