Skip to content

Instantly share code, notes, and snippets.

@ChristianSch
Created November 26, 2017 14:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ChristianSch/ab2c2e41f7bc04feb29d57b4650ba4a3 to your computer and use it in GitHub Desktop.
Save ChristianSch/ab2c2e41f7bc04feb29d57b4650ba4a3 to your computer and use it in GitHub Desktop.
#!/bin/sh
case "$1" in
bundlerextension)
jupyter-bundlerextension ${@:2}
;;
console)
jupyter-console ${@:2}
;;
kernelspec)
jupyter-kernelspec ${@:2}
;;
nbconvert)
jupyter-nbconvert ${@:2}
;;
nbextension)
jupyter-nbextension ${@:2}
;;
notebook)
jupyter-notebook ${@:2}
;;
serverextension)
jupyter-serverextension ${@:2}
;;
*)
echo "no such command: $1"
exit 1
esac
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment