aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools
diff options
context:
space:
mode:
authorHsieh Chin Fan <typebrook@gmail.com>2022-08-16 10:31:54 +0800
committerHsieh Chin Fan <typebrook@gmail.com>2022-08-16 10:31:54 +0800
commit3567c006c462fb1e046b71840b73b0bf4d6bade1 (patch)
tree9c2979457ad688452c2256efef3ab219e19043d0 /tools
parent4fa470bd9e66de687b0c8093d121a6f44bfbcc0a (diff)
Update
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