How to delete a folder in linux
Linux381
description
To quickly delete a folder through a command line in Linux, we created a folder named test, and now delete the folder through the command line
command
rm -r test
parameter
rm : delete files -r, -R, --recursive : delete files and directories recursively
result
rm: remove directory 'test'?