mirror of
https://github.com/tonydamage/nux-env.git
synced 2025-12-11 13:24:28 +01:00
8 lines
168 B
Bash
8 lines
168 B
Bash
#!/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";
|