blob: fdd524a1a9209946d162f97ed0da716ca17ae3b1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#!/bin/sh
# python-help: get help for keywords in python
[ -x "${XDG_DATA_HOME:-$HOME/.local/share}/virtualenvs/main/bin/python" ] &&
alias python="${XDG_DATA_HOME:-$HOME/.local/share}/virtualenvs/main/bin/python"
if [ "$#" -gt 0 ]; then
python -c "help('$*')"
else
python -c "help()"
fi
|