6 lines
135 B
Fish
Executable file
6 lines
135 B
Fish
Executable file
#!/usr/bin/env fish
|
|
#
|
|
|
|
function pip-upgrade-venv -d "Upgrade virtualenv"
|
|
pip freeze | cut -d'=' -f1 | xargs -n1 pip install -U
|
|
end
|