I've got a folder full of thousands of pictures. I want to move all of the .png files back one directory.. I tried

 mv -i *.png ../

But get the following error:

mv: invalid option -- 'p'
Try `mv --help' for more information.

Any advice?

有帮助吗?

解决方案

in order to prevent mv from trying to interpret a file with a leading dash (e.g. -pbla.png) as an option (like -p bla.png), you can separate the flags from the files using a double dash --:

mv -i -- *.png ../

another simple way is to prefix the current path ./ to each filename:

mv -i ./*.png ../

其他提示

mv *.png ../

This works on every linux distribution.

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top