/usr/bin/pymol is in pymol 1.7.2.1-1.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | #!/bin/sh
# debian wrapper script for pymol
test -r ${HOME}/.pymol && . ${HOME}/.pymol
PYMOL_PATH=${PYMOL_PATH:=`python2.7 -c "from imp import find_module; print find_module('pymol')[1]"`}
PYMOL_DATA=${PYMOL_DATA:=/usr/share/pymol/data}
PYMOL_SCRIPTS=${PYMOL_SCRIPTS:=/usr/share/pymol/scripts}
CHEMPY_DATA=${CHEMPY_DATA:=/usr/share/pymol/data/chempy}
export PYMOL_PATH
export PYMOL_DATA
export PYMOL_SCRIPTS
export CHEMPY_DATA
python2.7 -m pymol.__init__ ${1+"$@"}
|