Thread: Is it possible to tag files?
in f-spot photo manager, 1 can tag photos organize them. advantage of tags on folders 1 not have place file in more 1 folder if belongs more 1 category.
possible tag files in either nautilus or command line shell?
not aware of. however, if having copies of files matter of disk space utilization, create symbolic links (or hard links) file in different directories:
$ mkdir -p test/foo test/bar
$ echo "hello ubuntu forums!" > test/foo/hello
$ ls -l test/foo test/bar
test/bar:
total 0
test/foo:
total 4
-rw-r--r-- 1 boshea boshea 21 2011-06-24 16:15 hello
$ cd test/bar
$ ln -s hello ../foo/hello
$ ls -l
lrwxrwxrwx 1 boshea boshea 12 2011-06-24 16:19 hello -> ../foo/hello
$ cat hello
hello ubuntu forums!
Forum The Ubuntu Forum Community Ubuntu Official Flavours Support General Help [ubuntu] Is it possible to tag files?
Ubuntu

Comments
Post a Comment