aboutsummaryrefslogtreecommitdiff
path: root/libexec/recit-edit
blob: f105bdc422be5709857e949ce226fe24aaa3d2d1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/usr/bin/env bash
# Usage: recit edit

set -e

# shellcheck source=/dev/null
source lib/loader

recfile=$(load_recit)

if [[ -z ${EDITOR+x} ]]; then
  echo "$EDITOR is not defined please pass a message"
  exit 1
fi

command $EDITOR "$recfile"