7 lines
186 B
Bash
Executable file
7 lines
186 B
Bash
Executable file
#!/bin/sh
|
|
SCRIPTDIR=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )
|
|
|
|
# journal
|
|
JOURNALDIR="${HOME}/docs/journal/"
|
|
. ${SCRIPTDIR}/note/journal.shf
|
|
alias j="journal"
|