Skip to content

Instantly share code, notes, and snippets.

@typelogic
Created December 25, 2019 17:40
Show Gist options
  • Select an option

  • Save typelogic/2d5448492fd23aea1e3a9912d24d98bf to your computer and use it in GitHub Desktop.

Select an option

Save typelogic/2d5448492fd23aea1e3a9912d24d98bf to your computer and use it in GitHub Desktop.
find all java applets
# Do an or check to also find other derived applets
find . -type f -name '*.java' -exec grep -q -E '[[:space:]]+extends[[:space:]]+[a-z,.]*Applet|IdpassApplet[[:space:]]+' {} \; -exec echo {} \;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment