Sha256: 633203f55cf0e514386697b96e5e8ece31eadbecdbbed062d89eb4017490ffed
Contents?: true
Size: 203 Bytes
Versions: 6
Compression:
Stored size: 203 Bytes
Contents
#!/bin/bash # # Run a local http server from this directory on port 8000 # PORT=8000 if [ -z `which python` ]; then echo "FATAL: python must be installed" exit 1 fi python -m SimpleHTTPServer $PORT
Version data entries
6 entries across 6 versions & 1 rubygems