aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools
diff options
context:
space:
mode:
Diffstat (limited to 'tools')
-rwxr-xr-xtools/task/tkk3
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/task/tkk b/tools/task/tkk
index af2dcfe..148d3f6 100755
--- a/tools/task/tkk
+++ b/tools/task/tkk
@@ -1,6 +1,7 @@
1#! /bin/bash 1#! /bin/bash
2 2
3PS1='task ' 3PS1='task '
4while read -r -p 'task ' line </dev/tty; do 4while true; do
5 read -r -p 'task ' line </dev/tty;
5 task $line 6 task $line
6done 7done