Skip to content

Instantly share code, notes, and snippets.

@janpipek
Created November 22, 2014 13:34
Show Gist options
  • Save janpipek/748ecd420135cfaefa53 to your computer and use it in GitHub Desktop.
Save janpipek/748ecd420135cfaefa53 to your computer and use it in GitHub Desktop.
Run all ipython notebooks in a directory
#!/bin/bash
# pip install runipy
find . -maxdepth 1 -name "*ipynb" -print0 | xargs -0 -n1 runipy
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment