From c24cc0f4ef43be035cf31116c46904f723b5607f Mon Sep 17 00:00:00 2001 From: Julio Capote Date: Sun, 21 Aug 2022 11:31:03 -0400 Subject: recit-setup and recit-ls alias --- libexec/recit-ls | 3 +++ libexec/recit-setup | 12 ++++++++---- 2 files changed, 11 insertions(+), 4 deletions(-) create mode 100755 libexec/recit-ls (limited to 'libexec') diff --git a/libexec/recit-ls b/libexec/recit-ls new file mode 100755 index 0000000..2eb086b --- /dev/null +++ b/libexec/recit-ls @@ -0,0 +1,3 @@ +#!/usr/bin/env bash + +recit-entries "$@" \ No newline at end of file diff --git a/libexec/recit-setup b/libexec/recit-setup index fb8ce61..ba34026 100755 --- a/libexec/recit-setup +++ b/libexec/recit-setup @@ -1,11 +1,15 @@ #!/usr/bin/env bash +# Usage: recit setup [force] +# Summary: sets up a new recit database at $HOME/.recit.rec set -e -if [[ -f "$HOME/.recit.location" ]]; then - recfile_location=$(cat "$HOME/.recit.location") - echo "looks like you already have recit set up at ${recfile_location}, aborting..." - exit 1 +if ! [[ "$1" = "force" ]]; then + if [[ -f "$HOME/.recit.location" ]]; then + recfile_location=$(cat "$HOME/.recit.location") + echo "looks like you already have recit set up at ${recfile_location}, aborting..." + exit 1 + fi fi cat share/recit/recit.example.rec > "$HOME/.recit.rec" -- cgit v1.2.3