Skip to content

Instantly share code, notes, and snippets.

@kalyankpy
Created May 4, 2013 17:36
## rm a file or directory
> rm name_of_file(s)_to_remove
# remove a directory
> rm -r name_of_folder(s)
# remove all files inside a directory without asking confirmation
> rm -rf name_of_folder(s)
# for help on removing files/folders
> man rm
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment