Using Bash extended globbing, what will be the output of this command?'''bash$ ls -lapplebananabananapplebanapplepineapplestrawberry$ shopt -s extglob$ ls -l @(ba*(na)|a+(p)le)

🎲 Try a Random Question  |  Total Questions in Quiz: 70  |  🧠 Study this quiz with Flashcards
This question is part of a full practice quiz:
Bash Quiz — practice the complete quiz, review flashcards, or try a random question.

MCQs For LinkedIn Skill Assessments. Bash is a Unix shell and command language.


Using Bash extended globbing, what will be the output of this command?<br>'''bash<br>$ ls -l<br>apple<br>banana<br>bananapple<br>banapple<br>pineapple<br>strawberry<br>$ shopt -s extglob<br>$ ls -l @(ba*(na)|a+(p)le)<br>