diff options
| -rw-r--r-- | ilhare/.current | 1 | ||||
| -rw-r--r-- | ilhare/closed | 0 | ||||
| -rw-r--r-- | ilhare/open | 1 | ||||
| -rw-r--r-- | ilhare/rejected | 0 | ||||
| -rwxr-xr-x | new.sh | 14 |
5 files changed, 16 insertions, 0 deletions
diff --git a/ilhare/.current b/ilhare/.current new file mode 100644 index 0000000..0cfbf08 --- /dev/null +++ b/ilhare/.current @@ -0,0 +1 @@ +2 diff --git a/ilhare/closed b/ilhare/closed new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/ilhare/closed diff --git a/ilhare/open b/ilhare/open new file mode 100644 index 0000000..08e5428 --- /dev/null +++ b/ilhare/open @@ -0,0 +1 @@ +1. Fix crash when program is opened in background before running diff --git a/ilhare/rejected b/ilhare/rejected new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/ilhare/rejected @@ -0,0 +1,14 @@ +#!/bin/sh + +test -f .current || echo -n 1 > .current + +current=$(cat .current) + +if test $# -eq 2 +then + echo "$current. $1" >> open +else + echo "$current. " >> open + vim open +fi +echo -n "$((current + 1))" > .current |
