Linux中如何把查找到的文件放在一个文件夹(或路径)中?

2024-11-20 04:49:07
推荐回答(1个)
回答1:

假设你想查找这些文件后,将它们剪切到/opt下面
find
/
-type
f
-name
gstreamer*.rpm
-exec
mv
{}
/opt
\;