diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2023-07-19 16:56:07 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2023-07-19 16:56:07 -0300 |
commit | 10f57f9fe0e85c3d2361f1d17e8c91a202fcbb0d (patch) | |
tree | 6a5cb11f937cf0c317f438c25e85a6758dbf8d9e | |
parent | f2fc6d57656a8e7238efecd4afd0cc8c8c325e84 (diff) | |
download | scripts-10f57f9fe0e85c3d2361f1d17e8c91a202fcbb0d.tar.gz scripts-10f57f9fe0e85c3d2361f1d17e8c91a202fcbb0d.tar.bz2 |
Feat: status: list collected items
-rwxr-xr-x | collector | 6 | ||||
-rwxr-xr-x | status | 3 |
2 files changed, 8 insertions, 1 deletions
@@ -26,7 +26,11 @@ elif [ "$ACTION" == "add" ]; then shift echo "* [ ] $*" >> "$COLLECTOR_FILE" elif [ "$ACTION" == "list" ]; then - grep -e "^\* \[ \]" "$COLLECTOR_FILE" + if grep -q -e "^\* \[ \]" "$COLLECTOR_FILE"; then + echo "Collected items at $COLLECTOR_FILE:" + echo "" + grep -e "^\* \[ \]" "$COLLECTOR_FILE" + fi elif [ "$ACTION" == "edit" ]; then if [ ! -z "$EDITOR" ]; then $EDITOR "$COLLECTOR_FILE" @@ -93,6 +93,9 @@ function status_run { # Check your TODO lists, filtering only important tasks todo list important + # Collected items that need to be moved somewhere else + collector list + # Check if you have mails to send postponed |