There must be a simpler way to do this. I was looking for words similar in meaning to "back" or "previous" or "before" but beginning with the letter "d".
My awk is a bit rusty so I used sed, which I seem to use almost every day, wonderful, ugly command it is. Here is what I came up with:
dict -d moby-thesaurus back | sed -z 's/,/\n/g' | sed 's
(
Read more... )