From 87433df91aa6e87efe35b74fc82d829686d99afc Mon Sep 17 00:00:00 2001 From: Ivan Date: Sun, 7 Jan 2024 22:06:10 +0100 Subject: [PATCH] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 4c9d1ff..4c89538 100644 --- a/README.md +++ b/README.md @@ -143,7 +143,7 @@ citrine list | grep -E 'priority: [123]' # Get all tasks due today citrine list | grep "$(date +%Y-%m-%d)" # Count the number of completed tasks -citrine list | grep -c "[x]" +citrine list | grep -c "[x]" | wc -l # Set relative deadlines using the GNU date command citrine add -d "$(date --rfc-3339=seconds --date='next Friday')" "Task Title" -``` \ No newline at end of file +```