Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagebash
themeDJango
rm -r test

In addition, if a directory is empty, the command rmdir can remove it - this is sometimes safer, as it will only remove empty directories

Code Block
languagebash
themeDJango
mkdir test_dir
ls
rmdir test_dir
ls


Info

Using rm (carefully), clean up all the files and directories created by the tutorial inside c2s2 so far, as well as copy of the test directory that you moved under your NetID directory previously

...