mirror of
https://github.com/ff4500/utilities.git
synced 2026-07-01 11:47:04 -05:00
20 lines
611 B
Bash
20 lines
611 B
Bash
#!/usr/bin/env bash
|
|
|
|
# User configuration
|
|
# ------------------------------------------------------------------------------
|
|
#
|
|
#
|
|
#
|
|
# ------------------------------------------------------------------------------
|
|
|
|
# User specified directories (no trailing slashes!)
|
|
# ------------------------------------------------------------------------------
|
|
base_dir="./news_articles"
|
|
news_dir="${base_dir}/news"
|
|
template_dir="${base_dir}/_templates"
|
|
|
|
# Variables for functions - Don't mess with these
|
|
# ------------------------------------------------------------------------------
|
|
user_parameter="$1"
|
|
p="${user_parameter}"
|