Linux CLI - File and Directory Operations
Which of the following is the correct pattern to match files named
data1, data2, but not data10?data1, data2, but not data10?data[1-9]data? matches 'data' plus any one character (including letters), data* matches 'data' plus any characters (including 'data10'), and data?? matches 'data' plus exactly two characters (so it matches 'data10').15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions