This is solution to find and delete all @eaDir folders at Synology directory.

  1. To find all directories named @eaDir use the command:
    # find . -type d -name "@eaDir"
  2. To delete all found, do:
    # find . -type d -name "@eaDir" -print0 | xargs -0 rm -rf

Comments


Comments are closed