10 lines
146 B
Bash
10 lines
146 B
Bash
#!/usr/bin/env bash
|
|
|
|
if [ $(uname) = "Linux" ]
|
|
then
|
|
alias http='python2 -m SimpleHTTPServer'
|
|
else
|
|
alias http='python -m SimpleHTTPServer'
|
|
fi
|
|
|