centos 7.0系统 当没有匹配到要重命名的文件时候,rename报错解决办法

前端之家收集整理的这篇文章主要介绍了centos 7.0系统 当没有匹配到要重命名的文件时候,rename报错解决办法前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
centos 7.0系统 当没有匹配到要重命名文件时候,rename报错解决办法
在rename命令后面加上continue
-bash-4.4$ find ./ -name "*.gz.reading" | xargs -n1 rename ".reading" ""
rename: not enough arguments

Usage:
rename [options] expression replacement file...

Options:
-v,--verbose explain what is being done
-s,--symlink act on symlink target

-h,--help display this help and exit
-V,--version output version information and exit

For more details see rename(1).
-bash-4.4$ find ./ -name "*.gz.reading" | xargs -n1 rename ".reading" "" continue
-bash-4.4$ ls
原文链接:https://www.f2er.com/centos/375451.html

猜你在找的CentOS相关文章