Skip to content

Instantly share code, notes, and snippets.

@maedoc
Created April 4, 2025 13:46
Show Gist options
  • Save maedoc/63494a686dcc18692213447143ca5e84 to your computer and use it in GitHub Desktop.
Save maedoc/63494a686dcc18692213447143ca5e84 to your computer and use it in GitHub Desktop.
convenient bash func to activate envs
function sa()
{
name=$1
if [[ ! -d ~/env/$name ]]
then
mkdir -p ~/env
uv venv ~/env/$name
fi
source ~/env/$name/bin/activate
}
function sl()
{
du -h -d1 ~/env
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment