This commit is contained in:
TheK4n 2022-05-23 21:16:39 +03:00
parent e133bcb420
commit 1b919c7ea8
2 changed files with 5 additions and 1 deletions

View File

@ -83,7 +83,6 @@ alias music='mplayer -shuffle ~/Music/*'
# python # python
alias py='python3'
alias pipir='python3 -m pip install -r requirements.txt' alias pipir='python3 -m pip install -r requirements.txt'
# initializes first ./*/*/activate # initializes first ./*/*/activate

View File

@ -146,3 +146,8 @@ docker_ips() {
echo -e $OUT 2>/dev/null | column -t echo -e $OUT 2>/dev/null | column -t
} }
py() {
test -z "$@" && ipython -i -c "q = exit" || ipython $@
}