summaryrefslogtreecommitdiff
path: root/etc
diff options
context:
space:
mode:
authorDaniel Friesel <derf@derf.homelinux.org>2009-02-03 21:36:12 +0100
committerDaniel Friesel <derf@derf.homelinux.org>2009-02-03 21:36:12 +0100
commitb7e83601478249c82a745867e148b12a12561fc7 (patch)
tree65d060a45ba7a61f0d919a4d9c5944e2fb3a766d /etc
parentdfe2f479fb044252daf7bc50e12da37e5c4a0c04 (diff)
Added gtd-all function
Diffstat (limited to 'etc')
-rwxr-xr-xetc/functions/gtd-all7
1 files changed, 7 insertions, 0 deletions
diff --git a/etc/functions/gtd-all b/etc/functions/gtd-all
new file mode 100755
index 0000000..f1a46c6
--- /dev/null
+++ b/etc/functions/gtd-all
@@ -0,0 +1,7 @@
+## vim:ft=zsh
+typeset prefix=~/var/gtd
+typeset database
+for database in $prefix/*(.N); {
+ echo "\n${database:t}"
+ todo --database $database
+}