Skip to content

Instantly share code, notes, and snippets.

@chapimenge3
Last active June 3, 2024 09:24
Show Gist options
  • Save chapimenge3/d3559915bff191d773c1d558cde4130c to your computer and use it in GitHub Desktop.
Save chapimenge3/d3559915bff191d773c1d558cde4130c to your computer and use it in GitHub Desktop.
my custom bash utility functions
function lower() {
echo "$1" | tr '[:upper:]' '[:lower:]'
}
function activate(){
source env/bin/activate
}
function mkvir() {
python3 -m venv env
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment