mirror of
https://github.com/oh-my-fish/oh-my-fish
synced 2024-11-09 13:10:40 +00:00
10 lines
240 B
Fish
10 lines
240 B
Fish
|
# start in-place a simple http server, take a optional parameter for the port number
|
||
|
function pyhttp
|
||
|
if test -n "$argv"
|
||
|
set HTTPPORT $argv
|
||
|
else
|
||
|
set HTTPPORT 1025
|
||
|
end
|
||
|
python -m SimpleHTTPServer $HTTPPORT;
|
||
|
end
|