Which command concatenates all files whose names start with 'emp' and are followed by characters that are not digits?
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.