Skip to content
Snippets Groups Projects
Commit d923f055 authored by Paul McCarthy's avatar Paul McCarthy :mountain_bicyclist:
Browse files

MNT: fslpython[w] wrappers

parent c663fa56
No related branches found
No related tags found
No related merge requests found
#!/bin/sh
if [ "$FSLDIR" = "" ] ; then
echo "FSLDIR has not been set!"
exit 1
fi
exec ${FSLDIR}/bin/python $*
#!/bin/sh
if [ "$FSLDIR" = "" ] ; then
echo "FSLDIR has not been set!"
exit 1
fi
if [ -e ${FSLDIR}/bin/pythonw ]; then
exec ${FSLDIR}/bin/pythonw $*
else
exec ${FSLDIR}/bin/pythonw $*
fi
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment