LogSource/lib/functions/inline/arise_help.sh
Wheaterwax 0faf445b39
Some checks are pending
Deploy Arise to html branch / Deploy Arise (push) Waiting to run
initial commit with stuff from arise
2025-09-01 18:57:24 -03:00

37 lines
898 B
Bash

#!/bin/bash
#############
# DESCRIPTION
#############
# Prints help
#
#############
# Usage:
# arise_help
arise_help() {
cat <<EOF
Arise, v$arise_version
Welcome to Arise, a static site generator written in Bash
Usage:
------
bash arise build -[k][f]
# Builds the entire site
available in all build modes:
-k: Keeps source files in output
-f: Force overwrite pre-existing output
bash arise -[p|s|r][k][f]
# Builds only specific parts of the site
# Useful for testing purposes
mutually exclusive options:
-p: Build pages only mode
-s: Build sitemap only mode
-r: Build rss only mode
------
Please visit GitHub for more detailed info:
https://github.com/spectrasecure/arise
EOF
}