Skip to content

Instantly share code, notes, and snippets.

@vindard
Last active May 7, 2025 18:21
Show Gist options
  • Save vindard/c821872ff37abbebac7c9e1b4582a010 to your computer and use it in GitHub Desktop.
Save vindard/c821872ff37abbebac7c9e1b4582a010 to your computer and use it in GitHub Desktop.
Some one-liners I use to do tasks on my linux box
# To clean up all my docker volumes
docker volume rm $(docker volume ls | awk 'NR>1 {print $2}')
# clean up local branches
git branch -d $(git branch | grep -v main)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment