Run the following command in the terminal to find all directories and files containing clion in their name: -
$ sudo find . -iname "*clion*"
sudo find . -iname "*clion*"
Then delete the directories and files found.
To delete directories / files , go to the folder of this directory / file in the terminal using cd and run the following command: -
$ sudo rm -rf DIRECTORY_NAME/FILE_NAME
source share