how to delete directory in linux with all files code example
Example 1: remove full dir
rm -r mydir
Example 2: linux remove folder and all his content
rm -rf /path/to/directory/{*,.*}
rm -r mydir
rm -rf /path/to/directory/{*,.*}