Last active
November 7, 2025 15:34
-
-
Save dariocurr/9d36dc1308f29148be17672319b1ac5f to your computer and use it in GitHub Desktop.
Just some time-saving-time aliases
This file contains hidden or 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
| ## linux | |
| alias clr='clear' | |
| alias aptup='sudo apt update && sudo apt upgrade -y && sudo apt autoremove -y && sudo apt clean' | |
| alias brewup='brew update && brew upgrade && brew cleanup' | |
| ## docker | |
| alias docker-stop='docker stop $(docker ps -a -q)' | |
| alias docker-remove='docker-stop && docker rm $(docker ps -a -q)' | |
| alias docker-downup='docker compose down && docker compose up' | |
| alias docker-remove-untagged-images='docker rmi $(docker images --filter "dangling=true" -q --no-trunc)' | |
| ## python | |
| alias py='python' | |
| alias ipy="iptyhon" | |
| alias pyserver='python -m http.server' | |
| alias rufff='ruff format && ruff check --fix' | |
| alias precommit-all='pre-commit install && pre-commit autoupdate && pre-commit run --all-files' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment