Renaming a File

From Coder Merlin
< Shell
Revision as of 16:20, 12 December 2021 by imported>Anton-krom
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Within these castle walls be forged Mavens of Computer Science ...
— Merlin, The Coder

We can rename a file with the mv (move) command. Let's try it:

john-williams@codermerlin:~$  echo "Hello" > hello.txt

john-williams@codermerlin:~$  ls

john-williams@codermerlin:~$  mv hello.txt goodbye.txt

john-williams@codermerlin:~$  ls