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

2024年11月20日 04:49
有1个网友回答
网友(1):

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