List of questions
Related questions
Question 320 - XK0-005 discussion
A user is cleaning up a directory because it has more than 100,000 files that were generated from an experiment. When the user tries to remove the unneeded experiment files, the user receives an error:
arduino
cannot execute [Argument list too long]
Which of the following should the user execute to remove these files?
A.
find . -name 'experiment*.txt' -exec rm '{}' ;
B.
rm -rf experiment*.txt
C.
rm --force experiment*.txt
D.
for i in experiment*.txt; do find . -name $i -exec rmdir '{}' ; done
Your answer:
0 comments
Sorted by
Leave a comment first