Skip to content

Instantly share code, notes, and snippets.

@topolik
Created February 8, 2016 17:41
Show Gist options
  • Select an option

  • Save topolik/21a4b7bc094732290a2d to your computer and use it in GitHub Desktop.

Select an option

Save topolik/21a4b7bc094732290a2d to your computer and use it in GitHub Desktop.
Finds all Liferay models that are configured to use permissions
find -name 'resource-actions' | grep -v 'classes\|bin\|build' | xargs find | grep xml | xargs grep model-name | sed 's/<[^>]\+>//g' | cut -d ':' -f 2 | sed 's/[[:space:]]//g' | grep '[A-Z]'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment