diff --git a/configs/scripts/show-pythonpath b/configs/scripts/show-pythonpath new file mode 100644 index 0000000..13271c5 --- /dev/null +++ b/configs/scripts/show-pythonpath @@ -0,0 +1,5 @@ +#! /usr/bin/env python +import sys + +for entry in sys.path: + print(" - " + entry)