Hacker News new | ask | show | jobs
by ghoward 1687 days ago
It does, unfortunately. But you probably could implement finding something with two tags with some command-line fu.

My first crack at it is this:

    find -L tags/tag1 tags/tag2 -xtype l | sort | uniq -d
I don't know if that would work (on mobile; can't test), but from reading the man pages, it seems like it would do the trick.