Deleting a File

From Coder Merlin
Within these castle walls be forged Mavens of Computer Science ...
— Merlin, The Coder

We can delete a file with the rm (remove) command. Let's try it:

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

john-williams@codermerlin:~$  ls

john-williams@codermerlin:~$  rm hello.txt

john-williams@codermerlin:~$  ls