diff options
author | Daniel Friesel <derf@derf.homelinux.org> | 2008-09-22 07:11:28 +0200 |
---|---|---|
committer | Daniel Friesel <derf@derf.homelinux.org> | 2008-09-22 07:11:28 +0200 |
commit | bd9e2a82f69d314291f78d7a4ecb358e3367ec2e (patch) | |
tree | d239be524d5a6d98f3617ca10806cf2fe124baf5 /etc/functions/anytag | |
parent | e8449fdf180c63e1f872cdbea46f942d348eb2b9 (diff) |
anytag: Fixed paths
Diffstat (limited to 'etc/functions/anytag')
-rw-r--r-- | etc/functions/anytag | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/etc/functions/anytag b/etc/functions/anytag index 0d3c090..7dc26a8 100644 --- a/etc/functions/anytag +++ b/etc/functions/anytag @@ -10,9 +10,9 @@ for file in *(.); do eval $cmd read for tag in $reply; do - mkdir -p tags/$tag + mkdir -p .tags/$tag ( - cd tags/$tag + cd .tags/$tag ln -s ../../$file ) done |