While editing I saved a file as file.p;l instead of file.pl. Now when I try to rename it this happens:
$ mv file.p;l /home/mc/file.pl
mv: missing destination file operand after 'file.p'
Try 'mv --help' for more information.
How can I rename filename in CLI?
mv 'file.p;l' /home/mc/file.pl
. – G-Man Says 'Reinstate Monica' Apr 17 '19 at 06:23