File: atlasqueryLaunch

package info (click to toggle)
fslview 4.0.1-4
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 11,812 kB
  • ctags: 4,932
  • sloc: cpp: 28,276; ansic: 5,103; sh: 250; makefile: 125; python: 72; tcl: 43
file content (12 lines) | stat: -rw-r--r-- 415 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh

if [ `uname` = "Darwin" ] ; then
  DYLD_LIBRARY_PATH=${FSLDIR}/bin/fslview.app/Contents/Frameworks
  export DYLD_LIBRARY_PATH
  ${FSLDIR}/bin/atlasquery_bin "$1" "$2" "$3" "$4" "$5" "$6" "$7" "$8" "$9" "$10"
fi
if [ `uname` = "Linux" ] ; then
  LD_LIBRARY_PATH=${FSLDIR}/lib:${LD_LIBRARY_PATH}
  export LD_LIBRARY_PATH
  ${FSLDIR}/bin/atlasquery_bin "$1" "$2" "$3" "$4" "$5" "$6" "$7" "$8" "$9" "$10"
fi