To delete dot underscore files, you can use the following command:
sudo find . -name "._*" -exec rm -rf {} \;
This will start in the current directory and recursively search for files that start with ._
and delete them.
To delete dot underscore files, you can use the following command:
sudo find . -name "._*" -exec rm -rf {} \;
This will start in the current directory and recursively search for files that start with ._
and delete them.