summaryrefslogtreecommitdiff
path: root/.local/bin/development/pyh
blob: d8bd1a41f20e7af3aa273d85308e77c6cbeb6690 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/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"

export PAGER="less $LESS"

if [ "$#" -gt 0 ]; then
	python -c "help('$*')"
else
	python -c "help()"
fi