Compare commits

..

No commits in common. "06ee4b76bb5bbb95c909347bd500eeb302b92da6" and "4759318d299ade0b7c682975b7a8c8aede7fb7af" have entirely different histories.

3 changed files with 6 additions and 30 deletions

View File

@ -1,26 +0,0 @@
#!/usr/local/bin/bash
export PROJ_DIR=~/Notes
export JOURNAL_DIR=$PROJ_DIR/wikis
export SCRIPT_DIR=$PROJ_DIR/scripts
export FILES_DIR=$PROJ_DIR/files
export SUBJECTS_DIR=$PROJ_DIR/subjects
export UTILS_DIR=$SCRIPT_DIR/utils
function import () {
local SCRIPT_NAME="${1:?"import : script name not provided"}"
local SCRIPT_PATH=$UTILS_DIR/$SCRIPT_NAME
if [[ ! "$SCRIPT_PATH" =~ ^.*\.sh$ ]]; then
SCRIPT_PATH+=".sh"
fi
if [[ -f $SCRIPT_PATH ]]; then
. $SCRIPT_PATH
else
echo "import : $SCRIPT_PATH does not exist. Exiting program"
exit 1
fi
}

View File

@ -4,7 +4,7 @@ cd $JOURNAL_DIR
DATE=`date +'%Y-%m-%d'`
FILE="$JOURNAL_DIR/$DATE.wiki"
import journals
[[ -f $SCRIPT_DIR/utils/journals.sh ]] && . $SCRIPT_DIR/utils/journals.sh
# Getting the last journal entry file
declare -a journals

View File

@ -1,8 +1,10 @@
#!/usr/local/bin/bash
cd `dirname $0`
export PROJECT_DIR=~/Notes
export SCRIPT_DIR=$PROJECT_DIR/scripts
export JOURNAL_DIR=$PROJECT_DIR/wikis
[[ -f config.sh ]] && . config.sh
cd $SCRIPT_DIR
./make_new.sh
./update_hook.sh
./update_all.sh