This is such a basic question that I'm probably missing something obvious, but I can't figure out how to compare two strings in Fish (like "abc" == "def" in other languages).
So far, I've used a combination of contains (turns out that contains "" $a only returns 0 if $a is the empty string, although that hasn't seemed to work for me in all cases) and switch (with a case "what_i_want_to_match" and a case '*'). Neither of these methods seem particularly... correct, though.
[is actually a command (/bin/[on OS X), as well as a Bash builtin, with different syntaxes. Go figure! – Adam Brenecki Jun 22 '12 at 10:01testinstead of[in all my scripts, so that it's clear that it's an external command and not a part of the language. (testand[are the exact same tool.) Of course, I thinktestis also a Bash builtin. – Adam Brenecki May 8 at 6:20