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/sh | |
# itry - A portable script for launching ipython with uvx packages | |
# from https://til.simonwillison.net/python/itry | |
# with auto import of listed packages | |
# Show help if requested | |
[ "$1" = "--help" ] && { | |
echo "Usage: itry [packages...]" | |
echo "Example: itry llm sqlite-utils datasette" | |
exit 0 |