Skip to content

Instantly share code, notes, and snippets.

@cesgarma
Last active July 22, 2021 21:53
Show Gist options
  • Save cesgarma/d2a1fa74a527ddc395c16da4a7cbccbe to your computer and use it in GitHub Desktop.
Save cesgarma/d2a1fa74a527ddc395c16da4a7cbccbe to your computer and use it in GitHub Desktop.
Search for PDF, remove versioninig in the filename, remove duplicated and throw the count.
find . -iname "*.pdf" | sed -E "s/\-v[0-9].[0-9].pdf//g" | sort -u | grep -E "m7|m8|m9" | wc -l
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment