15 lines
308 B
Bash
Executable file
15 lines
308 B
Bash
Executable file
#!/usr/bin/env bash
|
|
# docstring=serve files with http.
|
|
set -E -o pipefail
|
|
|
|
miniserve \
|
|
--auth=guest:Super9000! \
|
|
--color-scheme-dark=monokai \
|
|
--qrcode \
|
|
--dirs-first \
|
|
--hide-version-footer \
|
|
--show-wget-footer \
|
|
--title="Rano's quick share"
|
|
|
|
|
|
# implement a switch for easy --upload-files=DIR
|