remove directory in ubuntu terminal code example
Example 1: ubuntu remove directory
rm -R folder-name
Example 2: linux remove folder and all his content
rm -rf /path/to/directory/{*,.*}
rm -R folder-name
rm -rf /path/to/directory/{*,.*}