在OSX中展平文件结构时自动覆盖

问题描述 投票:0回答:1

我试图在OSX中压缩包含许多重复文件的目录。

到目前为止我有....

find /directory -mindepth 2 -type f -exec mv -i '{}' /directory ';'

但这回应了很多次:

overwrite /directory/file.xml? (y/n [n]) 
not overwritten

请有人帮我标记自动接受是/否,它应该包含在上面的命令中?

提前致谢

bash macos command-line find mv
1个回答
3
投票

对于-f命令,你应该使用选项-i而不是mv

find /directory -mindepth 2 -type f -exec mv -f '{}' /directory ';'

mv的手册中:

 -f      Do not prompt for confirmation before overwriting the destination path.  (The -f option overrides any
         previous -i or -n options.)

 -i      Cause mv to write a prompt to standard error before moving a file that would overwrite an existing file.
         If the response from the standard input begins with the character `y' or `Y', the move is attempted.
         (The -i option overrides any previous -f or -n options.)
© www.soinside.com 2019 - 2024. All rights reserved.