Last active
June 25, 2024 03:30
-
-
Save pycoder2000/89a525599c262a6c0cb2bc172582acef to your computer and use it in GitHub Desktop.
My Bash aliases file
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
alias mkvenv="virtualenv venv" | |
alias entervenv='source venv/bin/activate && where python3' | |
alias py="pip3 install -r requirements.txt" | |
alias pyfreeze="pip3 freeze > requirements.txt" | |
alias pyinit="mkvenv && venv >> .gitignore" | |
alias deletecrap="find . -name '.DS_Store' -type f -delete" | |
alias listapps="ls /Applications | pbcopy" | |
alias updateall="brew update && brew upgrade" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment