Last active
April 22, 2023 21:05
-
-
Save BlkPingu/a036f8d0a80cb2c7ded06aa351f8ad92 to your computer and use it in GitHub Desktop.
Create new jupyter notebook
This file contains 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
// put this in your .bash_rc or .zshrc to create a new jupyter notebook at your current location | |
// use: newjp yournotebookname | |
// creates yournotebookname.ipynb | |
newjp() { | |
touch $(pwd)/$1.ipynb | |
echo "{\"cells\": [],\"metadata\": {},\"nbformat\": 4,\"nbformat_minor\": 2}" > $(pwd)/$1.ipynb | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment