rm 匹配多个文件扩展名

cla*_*rkk 3 linux

如何将这两个命令合并在一起

rm *.html
rm *.xml
Run Code Online (Sandbox Code Playgroud)

Mat*_*ton 9

简单地 rm *.html *.xml

另请参阅Linux(或macOS)的手册页或尝试当前提供此输出的tldr

$ tldr rm

rm

Remove files or directories.

- Remove files from arbitrary locations:
    rm path/to/file path/to/another/file

- Recursively remove a directory and all its subdirectories:
    rm -r path/to/folder

- Forcibly remove a directory, without prompting for confirmation or showing error messages:
    rm -rf path/to/folder

- Interactively remove multiple files, with a prompt before every removal:
    rm -i file(s)

- Remove files in verbose mode, printing a message for each removed file:
    rm -v path/to/folder/*

$
Run Code Online (Sandbox Code Playgroud)