From df9ffaaadf7f7e876706d4fd762f47d158c01d8c Mon Sep 17 00:00:00 2001 From: Julio Capote Date: Sat, 28 Jan 2023 22:35:59 -0500 Subject: record the current directory and expose entries via `recit here` --- libexec/recit-entries | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) (limited to 'libexec/recit-entries') diff --git a/libexec/recit-entries b/libexec/recit-entries index ed0a0e3..4181366 100755 --- a/libexec/recit-entries +++ b/libexec/recit-entries @@ -1,19 +1,23 @@ #!/usr/bin/env bash -# Usage: recit entries [-p project-name] [-t time|today|yesterday|tomorrow] +# Usage: recit entries [-p project-name] [-t time|today|yesterday|tomorrow] [-c context] # Summary: Display entries, optionally for a Project and/or a certain time set -e project="" query_time="" +context="" recfile=$(recit-file) -while getopts "p:t:" options; do +while getopts "p:t:c:" options; do case "${options}" in p) project=${OPTARG} ;; + c) + context=${OPTARG} + ;; t) query_time=${OPTARG} ;; @@ -41,6 +45,14 @@ if ! [[ "$query_time" = "" ]]; then expression="((Time >> '$fmt_date 00:00:00' && Time << '$fmt_date 23:59:59') || Time == '$fmt_date')" fi +if ! [[ "$context" = "" ]]; then + if [[ "$expression" = "" ]]; then + expression="Context = '$context'" + else + expression+=" && Context = '$context'" + fi +fi + if ! [[ "$project" = "" ]]; then if recsel -t Project -p Id ${recfile} | grep "$project" > /dev/null; then if [[ "$expression" = "" ]]; then -- cgit v1.2.3