📄 mpirun
字号:
#!/bin/sh# $Id: mpirun,v 1.1.6.1 2002/04/24 03:26:00 erik Exp $if [ $1 != "-np" ]; thenprogname=$*elif [ $2 = "1" ]; thenshift ; shiftprogname=$*elseecho "FAIL:Uniprocessor version of MPI can only use one processor."exit 1fi# If relative path is used prepend a ./tail=`echo $progname | sed 's/\/.*//'` if [ "$tail" != "" ]; then progname="./$progname"fi# Execute the program$prognameexit 0
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -