PROD_STR="Simple Note System" VER_STR="v2.0a8" YEAR=2016 cat << EOF #!/bin/bash #========================================================== # $PROD_STR, $VER_STR # Copyright $YEAR, Xenese Labs/Sicron-Perion XNF #========================================================== # Prevent freak accidents involving the root directory if [ -z "\$HOME" ]; then HOME=/home/"\$(whoami)"; fi readonly PROD_STR="$PROD_STR" readonly VER_STR="$VER_STR" readonly ROOT_DIR="\$HOME"/.config/sns readonly NOTES_DIR="\$ROOT_DIR"/notes readonly TMP_DIR="\$ROOT_DIR"/tmp readonly CONFIG_FILE="\$ROOT_DIR/sns.conf" printf "%s\n" "\$PROD_STR" printf "%s\n" "------------------" EOF