用奇怪的字符重命名文件名

用奇怪的字符重命名文件名

编辑时,我将文件保存为 file.p;l 而不是 file.pl。现在,当我尝试重命名它时,会发生这种情况:

$ mv file.p;l /home/mc/file.pl
mv: missing destination file operand after 'file.p'
Try 'mv --help' for more information.

如何在 CLI 中重命名文件名?

答案1

只需使用引号: mv "file.p;l" /home/mc/file.pl

相关内容