Skip to content

Instantly share code, notes, and snippets.

@cboudereau
Created September 21, 2023 06:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cboudereau/ba6d26ab693b0a16e631c03b38f589b8 to your computer and use it in GitHub Desktop.
Save cboudereau/ba6d26ab693b0a16e631c03b38f589b8 to your computer and use it in GitHub Desktop.
Count uniq line in large json files under json folder recursively
#! /bin/bash
find ./json -type f -name '*.json' -exec cat {} + | sort | uniq -c
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment