RosettaCodeData/Task/Take-notes-on-the-command-line/UNIX-Shell/take-notes-on-the-command-line-2.sh

2 lines
95 B
Bash
Raw Permalink Normal View History

2013-04-11 01:07:29 -07:00
N=~/notes.txt;[[ $# -gt 0 ]] && { date ; echo " $*"; exit 0; } >> $N || [[ -r $N ]] && cat $N