summaryrefslogtreecommitdiff
path: root/etc/functions/anytag
diff options
context:
space:
mode:
Diffstat (limited to 'etc/functions/anytag')
-rw-r--r--etc/functions/anytag19
1 files changed, 0 insertions, 19 deletions
diff --git a/etc/functions/anytag b/etc/functions/anytag
deleted file mode 100644
index 7dc26a8..0000000
--- a/etc/functions/anytag
+++ /dev/null
@@ -1,19 +0,0 @@
-## vim:ft=zsh
-## anytag - tag files based on symlinks (quick&dirty)
-
-typeset -T REPLY reply ' '
-typeset cmd=$1
-typeset file tag
-
-mkdir -p .tags
-for file in *(.); do
- eval $cmd
- read
- for tag in $reply; do
- mkdir -p .tags/$tag
- (
- cd .tags/$tag
- ln -s ../../$file
- )
- done
-done