You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
394 B
19 lines
394 B
5 years ago
|
#!/bin/tcsh
|
||
|
|
||
|
setenv g09root /cm/shared/apps/gaussian/g09revD.01
|
||
|
|
||
|
if ($?USETMPFS ) then
|
||
|
setenv tmpG09 /tmp/${SLURM_JOB_NAME}.o${SLURM_JOB_ID}.tmp
|
||
|
else
|
||
|
setenv tmpG09 /${SLURM_SUBMIT_DIR}/${SLURM_JOB_NAME}.o${SLURM_JOB_ID}.tmp
|
||
|
endif
|
||
|
|
||
|
mkdir $tmpG09
|
||
|
setenv GAUSS_SCRDIR $tmpG09
|
||
|
|
||
|
source $g09root/g09/bsd/g09.login
|
||
|
|
||
|
g09 < $1
|
||
|
|
||
|
rmdir --ignore-fail-on-non-empty $tmpG09
|