do_fprotex

来自「CCSM Research Tools: Community Atmospher」· 代码 · 共 42 行

TXT
42
字号
#!/bin/csh -f##===============================================================================# do_fprotex#===============================================================================# # Process Fortran prologue(s) using ProTex.## Usage: do_fprotex <class> <fortran filename>##        <class> is the name of the class or module whose functions#               are instrumented for ProTeX (e.g., date)##        <fortran_filename.F[90]> is the name of the file that includes the #               prologue(s) instrumented for ProTeX (e.g., date.F)## See the ProTeX documentation:# http://dao.gsfc.nasa.gov/software/protex# for a description of the command-line options used in this script.# # C. DeLuca                                                       March 15, 2001#===============================================================================if ($#argv != 2 ) then  echo "Usage: do_fprotex <class> <fortran_filename.F[90]>"  exitelse  set class=$1  set file=$2  perl $DOC_DIR/templates/protex -bF +f $file > ${class}_fapi.texendif

⌨️ 快捷键说明

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