Skip to content

Instantly share code, notes, and snippets.

@frederickding
Created July 9, 2022 20:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save frederickding/7dec58feb88e58fa8b6a9f40f62daab0 to your computer and use it in GitHub Desktop.
Save frederickding/7dec58feb88e58fa8b6a9f40f62daab0 to your computer and use it in GitHub Desktop.
Find command for excluding annoying directories
#!/bin/sh
find /mnt/isos -type f -not \( -path '#recycle' -o -name '.DS_Store' -o -path '*@eaDir*' \) 2>/dev/null | sort
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment