Created
June 18, 2016 08:51
-
-
Save deebuls/9ce6eaa94399a56adf52c1f46740d383 to your computer and use it in GitHub Desktop.
Unzip, untar recursively
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| find . -name "*.zip" | while read filename; do unzip -o -d "`dirname "$filename"`" "$filename"; done; | |
| find . -name "*.tar*" | while read filename; do tar xvf "$filename" -C "`dirname "$filename"`"; done; | |
| find . -name "*.ipynb" -execdir jupyter nbconvert --to html {} \; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment