Files
bash-it/plugins/available/python.plugin.bash
2012-05-13 22:13:54 -04:00

11 lines
192 B
Bash

cite about-plugin
about-plugin 'alias "http" to SimpleHTTPServer'
if [ $(uname) = "Linux" ]
then
alias http='python2 -m SimpleHTTPServer'
else
alias http='python -m SimpleHTTPServer'
fi