Files
bash-it/plugins/python.plugin.bash
2011-03-07 00:06:52 +01:00

10 lines
138 B
Bash

#!/bin/bash
if [ $(uname) = "Linux" ]
then
alias http='python2 -m SimpleHTTPServer'
else
alias http='python -m SimpleHTTPServer'
fi