Ask Question
4 September, 09:17

What command would you give to list all English-language words that are exactly 5 characters long, have a lower-case vowel ('a', 'e', 'i', 'o', 'u', or 'y') in the second position, and ends with 's'? The remaining letters could be any character that occurs in English words, including but not limited to upper and lower-case alphabetics, numbers, hyphens, etc.

+2
Answers (1)
  1. 4 September, 12:54
    0
    In simple words, The following command / order is used to dictate the English language characters that are initiated with 't', have a downside-case vowel in the middle position and ends with 's':

    Command: grep '^[t].[aeiouy]. s$'

    input:

    taeis

    taeid

    saeis

    taais

    taeis

    taiis

    taois

    tauis

    tayis

    taxis

    t_i_s
Know the Answer?
Not Sure About the Answer?
Get an answer to your question ✅ “What command would you give to list all English-language words that are exactly 5 characters long, have a lower-case vowel ('a', 'e', 'i', ...” in 📙 English if there is no answer or all answers are wrong, use a search bar and try to find the answer among similar questions.
Search for Other Answers