blob: ae0be2f4988c3f9aa431b399c3bc945b63ccc280 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
#!/usr/bin/env bash
# Usage: recit add-entry [time|"now"] "notes" (on 2nd argument opens $EDITOR)
set -e
# shellcheck source=/dev/null
source lib/loader
recfile=$(load_recit)
uuid=$(uuidgen)
notes=""
query_time=""
if [[ -z "$1" ]]; then
query_time="now"
else
query_time="$1"
fi
if [[ -z "$2" ]]; then
if [[ -z ${EDITOR+x} ]]; then
echo "$EDITOR is not defined please pass a message"
exit 1
fi
tmpfile="$(mktemp)"
command $EDITOR "$tmpfile"
notes=$(cat "$tmpfile")
rm "$tmpfile"
else
notes=$2
fi
if [[ "$query_time" == "now" || "$query_time" == "today" ]]; then
fmt_date=$(date '+%Y-%m-%d %r')
elif [[ "$query_time" == "tomorrow" ]]; then
fmt_date=$(perl -e "use POSIX qw(strftime); print strftime('%Y-%m-%d', localtime(time + 86400)), qq(\n);")
else
fmt_date=$query_time
fi
recins --verbose -f Id -v "$uuid" -f Time -v "$fmt_date" -f Notes -v "$notes" -t Entry "${recfile}"
echo "$uuid"
|