多选题
批量删除当前目录下后缀名为.c的文件。如a.c、b.c。
A、
rm *.c
B、
find . -name "*.c" -maxdepth 1 | xargs rm
C、
find . -name "*.c" | xargs rm
D、
以上都不正确
【正确答案】
A、B
【答案解析】
提交答案
关闭