linux 文件批量重命名

来源:互联网 发布:nginx安装指定配置目录 编辑:程序博客网 时间:2024/06/05 04:45

文件批量加后缀.old

ls  | awk '{system("mv "$0" "$0".old""")}'   

0 0