Rename Multiple Files Using Find 发表于 2022-06-15 更新于 2024-08-22 分类于 Linux 系统和软件 文章标准 暂无 Use the following command to recursively rename files matching a specific pattern (file* here). find . -type f -name 'file*' -execdir mv {} {}_renamed ';'