How do I delete all files that start with 'labtest,' but keep the file 'labtest' itself undeleted?
I was trying
rm labtest*[!"labtest"]
But that didn't work out too well.
Question 5
Enter a command to delete all files that have filenames starting with 'labtest',
except 'labtest' itself, from the current directory (Delete all files starting
with 'labtest' followed by one or more characters).
You entered: rm *labtest?![labtest]
Please try again.