Each of these commands will run an ad hoc http static server in your current (or specified) directory, available at http://localhost:8000. Use this power wisely.
$ python -m SimpleHTTPServer 8000Each of these commands will run an ad hoc http static server in your current (or specified) directory, available at http://localhost:8000. Use this power wisely.
$ python -m SimpleHTTPServer 8000| #!/bin/bash | |
| # Downloads sleuthkit 4.6.0 and autopsy 4.6.0 to current directory and builds | |
| # them. | |
| ROOT="$(pwd)" | |
| # Checking required programs to exist. | |
| type wget >/dev/null 2>&1 || { | |
| echo >&2 "Wget not found. Aborting."; exit 1; | |
| } | |
| type autoreconf >/dev/null 2>&1 || { |