我已经装载了一个图像,并使用 find 命令显示在图像上找到的所有文件类型
~/mounted $ find . -type f -exec file {} \;
我知道如何将命令的输出定向到 .txt 文档,但我不知道如何将找到的文件复制到另一个目录。
答案1
不要运行该实用程序,而是file
使用相同的技术cp
$ find . -type f -exec cp {} /destination/path \;
我已经装载了一个图像,并使用 find 命令显示在图像上找到的所有文件类型
~/mounted $ find . -type f -exec file {} \;
我知道如何将命令的输出定向到 .txt 文档,但我不知道如何将找到的文件复制到另一个目录。
不要运行该实用程序,而是file
使用相同的技术cp
$ find . -type f -exec cp {} /destination/path \;