Common options include:
$ rm file ← Deletes a single file $ rm file1 file2 ←Deletes multiple files $ rm -r dir1 ←Deletes a directory and its contents $ rm -ir dir1 ←Deletes a directory and prompts for confirmation for each file $ rm goo* ← Deletes all files starting with "goo" |