Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个命令.tar.gz将从现有文件创建一个新文件,
.tar.gz
sudo tar -zcvf Existing.tar.gz New.tar.gz
New.tar.gz此命令将从现有文件创建一个新Existing.tar.gz文件。
New.tar.gz
Existing.tar.gz
谁能告诉我,有没有办法在不创建新文件的情况下重命名现有文件?
谢谢。
最简单的方法是简单地重命名(“移动”)文件:
mv Existing.tar.gz New.tar.gz