From 4b548fefc88a02c0cf3c78506e07ab0a66627761 Mon Sep 17 00:00:00 2001 From: Lars Wirzenius Date: Fri, 27 Jul 2018 17:15:01 +0300 Subject: Add: script to show only non-done statuses --- status.sh | 5 +++++ 1 file changed, 5 insertions(+) create mode 100755 status.sh (limited to 'status.sh') diff --git a/status.sh b/status.sh new file mode 100755 index 0000000..ffd9403 --- /dev/null +++ b/status.sh @@ -0,0 +1,5 @@ +#!/bin/sh + +set -eu +icktool status | awk '$1 == "project" || /^-/ || $3 != "done"' | grep -v 'dummy' + -- cgit v1.2.1