Answer:
grep '^.[aeiouy]..[t]$' /usr/share/dict/words
Step-by-step explanation:
The grep command is usually used in this situation.
^. The first dot in the command represents the first character of the word.
[aeiouy] represents lower-case vowel in the second position of any 5 character word the second charactere must be a lower case vowel.
.. The next two dots represents the next two characters of any 5 character word.
[t] represents the last character of any 5 character word because the last letter ends with t.