Last active
January 29, 2025 04:13
-
-
Save chuckntaylor/098e33ba9c39060ad5ce14bf7c764de3 to your computer and use it in GitHub Desktop.
Revisions
-
chuckntaylor revised this gist
Jan 29, 2025 . 1 changed file with 6 additions and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1 +1,6 @@ To delete dot underscore files, you can use the following command: ```bash sudo find . -name "._*" -exec rm -rf {} \; ``` This will start in the current directory and recursively search for files that start with `._` and delete them. -
chuckntaylor created this gist
Jan 29, 2025 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1 @@