1
1
Fork 0

added short journal script

This commit is contained in:
David Starzengruber 2012-04-08 23:05:12 +02:00
parent d6764c5d06
commit f4dcb02fe5
1 changed files with 27 additions and 0 deletions

27
journal.sh Executable file
View File

@ -0,0 +1,27 @@
#!/bin/bash
# journal script for keeping
# track of what i do and think
#check if output file is given as first option
if [ -z $1 ]; then
outputfile=journal.txt
else
outputfile=$1
fi
#generating timestamp
timestamp=$(date '+%d.%m.%Y %H:%M')
#read journal entry from stdin
echo "enter oneliner into journal:"; read input
#writing to outputfile
echo "**** $timestamp ****" >> $outputfile
echo $input >> $outputfile
echo "" >> $outputfile
# **** end of script ****