I cant figure this out, new to Unix. Any help at all would be appreciated!
Suppose you were working a crossword puzzle and needed a 6-letter word beginning with 'b' (upper or lower-case) and with a lower-case 'e' as its third letter. What grep command would you use to list the words from /usr/dict/words that match this requirement?
Just a fix I just came up with, you should replace the dot after [bB] with [a-z] otherwise it will also match numbers and stuff, which is probably not what you want.