10 lines
156 B
Bash
Executable file
10 lines
156 B
Bash
Executable file
#! /usr/bin/bash
|
|
|
|
case $1 in
|
|
j | journal)
|
|
. ${HOME}/Projects/scripts/journal.sh
|
|
;;
|
|
c | config)
|
|
echo 'Config script in-progress'
|
|
;;
|
|
esac
|