Skip to content

Instantly share code, notes, and snippets.

@chuckntaylor
Last active January 29, 2025 04:13
Show Gist options
  • Select an option

  • Save chuckntaylor/098e33ba9c39060ad5ce14bf7c764de3 to your computer and use it in GitHub Desktop.

Select an option

Save chuckntaylor/098e33ba9c39060ad5ce14bf7c764de3 to your computer and use it in GitHub Desktop.

Revisions

  1. chuckntaylor revised this gist Jan 29, 2025. 1 changed file with 6 additions and 1 deletion.
    7 changes: 6 additions & 1 deletion deleteDotUnderscoreFiles.md
    Original 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.
  2. chuckntaylor created this gist Jan 29, 2025.
    1 change: 1 addition & 0 deletions deleteDotUnderscoreFiles.md
    Original file line number Diff line number Diff line change
    @@ -0,0 +1 @@
    ‎‎​