take.comp

来自「已经编译好的levoo程序」· COMP 代码 · 共 42 行

COMP
42
字号
#!/bin/csh -f################################################################# set the rout to your parcarp source code to roadset road="~/TOOLS"###### set the rout to your current directory to currset curr = "`pwd`"######################################################################################################################## copying all necessary files ###################################################################################clearif( -e param.inc ) then  echo "cp param.inc $road/param.inc"        cp param.inc $road/param.incelse  echo 'FATAL: param.inc is absent'  exitendif##################################################################### compiling the Parallel Car-Parinello ###################################################################echo " "cd $roadecho "....... Now working directory is `pwd`"echo "Compiling input checker ...."echo "f77 -o take take.f "      f77 -o take take.f #/bin/rm *.o##########################################################echo " "cd $currecho ".......And now working directory is `pwd`"echo "mv $road/take  ."      mv $road/take  .echo "Done\!"

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?