如何在Mac上使用Z shell删除.zshrc文件上的.txt?[已关闭]

von4xj4u  于 2023-03-13  发布在  Shell
关注(0)|答案(1)|浏览(178)

**已关闭。**此问题为not about programming or software development。当前不接受答案。

此问题似乎与a specific programming problem, a software algorithm, or software tools primarily used by programmers无关。如果您认为此问题与another Stack Exchange site的主题有关,您可以留下评论,说明在何处可以回答此问题。
9天前关闭。
Improve this question
我不得不编辑我的.zshrc文件,它被锁定了,所以本质上创建了一个副本,然后编辑并删除了原始的.zshrc文件。我已经将我的“.zshrc副本”文件重命名为".zshrc“,但是当我使用ls -a时,它显示为. zshrc. txt
如何删除.txt结尾?

huus2vyu

huus2vyu1#

您可以使用mv命令重命名该文件以删除.txt扩展名

cd ~
cp .zshrc backup_zshrc
mv .zshrc.txt .zshrc

如果它已经存在则覆盖它

相关问题