我如何在 SuSE 12.5 中的文件目录中的所有文件上附加副本
How do i append copy on all my files inside a file directory in SuSE 12.5
作为基于文件的迁移的一部分,我计划在所有文件的末尾添加副本,然后在迁移后删除该副本。我想知道是否有任何命令可以帮助我在所有文件的末尾附加“副本”,同时需要在迁移后删除该副本。
例如:
file1.txt >> file1.txt.copy >>file1.txt(迁移到不同位置后)
append "copy" at the end of all my files
for f in *; do mv -n "$f" "$f.copy"; done
remove that copy
for f in *.copy; do mv -n "$f" "${f:0:-5}"; done
作为基于文件的迁移的一部分,我计划在所有文件的末尾添加副本,然后在迁移后删除该副本。我想知道是否有任何命令可以帮助我在所有文件的末尾附加“副本”,同时需要在迁移后删除该副本。
例如: file1.txt >> file1.txt.copy >>file1.txt(迁移到不同位置后)
append "copy" at the end of all my files
for f in *; do mv -n "$f" "$f.copy"; done
remove that copy
for f in *.copy; do mv -n "$f" "${f:0:-5}"; done