Hi all,
Simple question, how do I compare two strings in the bourne shell to
tell which one comes alphabetically first?
Logic I'm looking for is
if (string1 < string2)
string1 comes first
else
string2 comes first
fi
Is there an easy way to do this?