Which command concatenates all files whose names start with 'emp' and are followed by characters that are not digits?

Choose the correct answer

Explanation

Option A, 'cat emp[!0-9]', correctly selects files beginning with 'emp' followed by any character except digits. Option B uses an incorrect pattern and command, while options C and D limit the match to specific letter ranges and do not exclude digits as required.

Which command concatenates all files whose names sta… — Basic of linux unix | PakQuizHub