diff options
Diffstat (limited to 'libexec/recit-edit')
-rwxr-xr-x | libexec/recit-edit | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/libexec/recit-edit b/libexec/recit-edit new file mode 100755 index 0000000..f105bdc --- /dev/null +++ b/libexec/recit-edit @@ -0,0 +1,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"
\ No newline at end of file |