[BACK]Return to gen-shell-scripts CVS log [TXT][DIR] Up to [local] / OpenXM / rc

File: [local] / OpenXM / rc / gen-shell-scripts (download)

Revision 1.1, Sun Jan 30 10:40:43 2000 UTC (24 years, 3 months ago) by takayama
Branch: MAIN

A bug fix of cshrc. dot.cshrc stops with an error when LD_LIBRARY_PATH is
already set.  gen-shell-scripts generates shell scripts to start asir, sm1,
gp.

#!/bin/sh
# $OpenXM: OpenXM/rc/gen-shell-scripts,v 1.1 2000/01/30 10:40:43 takayama Exp $

#asir
	rm -f asir
	echo "#!/bin/csh" >asir
	cat dot.cshrc >>asir
	echo '$OpenXM_HOME/bin/fep $OpenXM_HOME/bin/asir' >>asir
	chmod +x asir

#sm1
	rm -f sm1
	echo "#!/bin/csh" >sm1
	cat dot.cshrc >>sm1
	echo '$OpenXM_HOME/bin/fep $OpenXM_HOME/bin/sm1' >>sm1
	chmod +x sm1

#gp
	rm -f gp
	echo "#!/bin/csh" >gp
	cat dot.cshrc >>gp
	echo '$OpenXM_HOME/bin/fep $OpenXM_HOME/bin/gp' >>gp
	chmod +x gp