Skip to content

Instantly share code, notes, and snippets.

@dkirkby
Created June 27, 2024 16:57
Show Gist options
  • Save dkirkby/641d45d3aede2a280fb8c31025fd090b to your computer and use it in GitHub Desktop.
Save dkirkby/641d45d3aede2a280fb8c31025fd090b to your computer and use it in GitHub Desktop.
Find jupyter notebooks containing a string
find . -name "*.ipynb" -not -path "*checkpoint*" -print0 | xargs -0 fgrep -l coordinates
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment