Skip to content

Instantly share code, notes, and snippets.

@gvangool
Forked from mmalone/vipy.sh
Created March 3, 2010 06:53
Show Gist options
  • Save gvangool/320394 to your computer and use it in GitHub Desktop.
Save gvangool/320394 to your computer and use it in GitHub Desktop.
Simple shell script that locates a Python module and opens it in vi.
#!/bin/bash
if [ $# -ne 1 ]; then
echo "Usage: vipy <python module>"
exit 1
fi
MODULE_LOCATION=`python -c "import $1; print $1.__file__.rstrip('c')"`
if [ -z $MODULE_LOCATION ]; then
echo "Couldn't find module: $1"
exit 1
fi
vi $MODULE_LOCATION
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment