Last active
June 3, 2024 09:24
-
-
Save chapimenge3/d3559915bff191d773c1d558cde4130c to your computer and use it in GitHub Desktop.
my custom bash utility functions
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
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