blob: 0636bc61451574ffff1228a01f5b082cb81b0099 (
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
|
#!/usr/bin/env bash
# Usage: recit edit-entry uuid
set -e
# shellcheck source=/dev/null
source lib/loader
recfile=$(load_recit)
uuid=$1
notes=$(recsel -e "Id = '$uuid'" -t Entry -P Notes "${recfile}")
time=$(recsel -e "Id = '$uuid'" -t Entry -P Time "${recfile}")
if [[ -z $notes ]]; then
echo "record not found"
exit 1
fi
if [[ -z ${EDITOR+x} ]]; then
echo "$EDITOR is not defined please pass a message"
exit 1
fi
tmpfile="$(mktemp)"
echo "$notes" > $tmpfile
command $EDITOR "$tmpfile"
notes=$(cat "$tmpfile")
rm "$tmpfile"
recins -e "Id = '$uuid'" -t Entry -f Id -v "$uuid" -f Notes -v "$notes" -f Time -v "$time" "${recfile}"
|