Linux 和 macOS 中删除“除某些文件外的其他文件”的方法

我们知道,在类 Unix 系统中,删除文件的命令是 rm。但有时我们需要删除“除了某些文件”外的其他文件。

例如,在 /path 路径下,有 file1file2file3file4file5 五个文件以及 dir1dir2dir3 三个文件夹。我们现在想删除除了 file1file4dir3 外的其他文件和文件夹。针对 Linux 和 macOS 系统,方法分别如下,

Linux 中的方法

rm -r !(file1|file4|dir3)

macOS 中的方法

rm -r ^(file1|file4|dir3)(N)

以上就是 Linux 和 macOS 中删除“除某些文件外的其他文件”的方法。

文章标题:Linux 和 macOS 中删除“除某些文件外的其他文件”的方法
文章作者:平中
转载链接:https://phyiscs.com/methods-for-deleting-files-other-than-certain-files-in-linux-and-macos.html
上一篇
下一篇