Skip to content

Instantly share code, notes, and snippets.

@yuya-maemichi-synspective
Last active January 18, 2024 10:32
Show Gist options
  • Save yuya-maemichi-synspective/51bc4c8af4d737307c169b721e8d308c to your computer and use it in GitHub Desktop.
Save yuya-maemichi-synspective/51bc4c8af4d737307c169b721e8d308c to your computer and use it in GitHub Desktop.
macOS snippets
xmlstarlet ed --inplace -u '//module/@type' -v 'EMPTY_MODULE'
find ~ \
-path "$HOME/.Trash" -prune -or \
-path "$HOME/Library" -prune -or \
-path '*/node_modules' -prune -or \
-path '*/.idea/*.iml' -type f -print
find ~ \
-path "$HOME/.Trash" -prune -or \
-path "$HOME/Google Drive" -prune -or \
-path "$HOME/Library" -prune -or \
-path '*/node_modules' -prune -or \
-path '*/.idea/*.iml' -type f \
-exec xmlstarlet sel -t -m 'module' -v '@type' -o \n '{}' \;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment