Automated_Journal_VimWiki/scripts/update_all.sh

13 lines
200 B
Bash
Raw Normal View History

2023-06-14 19:15:13 +00:00
#!/usr/bin/bash
JOURNAL_DIR=~/Journal
2023-08-29 17:01:57 +00:00
FILES_DIR=$JOURNAL_DIR/files
2023-06-14 19:15:13 +00:00
SCRIPT_DIR=$JOURNAL_DIR/scripts/enabled
#set -x
cd $JOURNAL_DIR
for script in $SCRIPT_DIR/*; do
[[ -x $script ]] && $script
done