Automated_Journal_VimWiki/scripts/update_all.sh

12 lines
243 B
Bash
Raw Normal View History

#!/opt/homebrew/bin/bash
export PROJ_DIR=~/Notes
export JOURNAL_DIR=$PROJ_DIR/wikis
export FILES_DIR=$PROJ_DIR/files
export SCRIPT_DIR=$PROJ_DIR/scripts
2023-06-14 19:15:13 +00:00
cd $PROJ_DIR
2023-06-14 19:15:13 +00:00
for script in $SCRIPT_DIR/enabled/**; do
2023-06-14 19:15:13 +00:00
[[ -x $script ]] && $script
done