Last active
November 15, 2021 11:19
-
-
Save BenSYZ/c21b7e44f6c6d4a32bb839fc34a793ae to your computer and use it in GitHub Desktop.
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
#!/bin/zsh | |
cat $1 |\ | |
jq '.cells|.[] |select(.cell_type == "code") | .source|.[]' |\ | |
sed -n 's/"\(.*\)\\n"/\1/p' |\ | |
sed 's/\\"/"/g' > $1.py | |
# jq select code cell | |
# sed 1. remove the prefix " and suffix \n" | |
# 2. " in code will save as \" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment