1
1
Fork 0
mirror of https://github.com/tonydamage/nux-env.git synced 2025-12-11 13:24:28 +01:00
nux-env/bin/nux-note
2016-04-26 11:02:52 +02:00

8 lines
168 B
Bash
Executable file

#!/bin/sh
DATE_FORMAT="%Y-%m-%d %H:%M"
NOTE_FILE=$1;
shift;
# FIXME: Add possibility to specify note aliases & help
echo $(date "+$DATE_FORMAT") $* ">> $NOTE_FILE";