⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 out.pid

📁 fastDNAml is an attempt to solve the same problem as DNAML, but to do so faster and using less memo
💻 PID
字号:
#! /bin/sh## Run a program, appending its process id to its output file name#outflag="-o"if test $# -eq 2; then    out="$2"    set - "$1"else    while echo " $1" | grep "^ -" >/dev/null; do        if test $# -lt 2;         then break        elif test $1 = $outflag;  then out=$2; shift; shift        elif test $1 = "-out";    then out=$2; shift; shift        elif test $1 = "-";       then shift; break        else echo "Bad flag:  $*" >&2; while test $# -gt 0; do shift; done; break        fi    done    if test $# -lt 1; then        comm=`echo $0 | sed -e 's&^.*/&&g'`        echo "Usage:  $comm  program  outfile   or   $comm  $outflag outfile  program  [program_args]" >&2        exit    fifiecho "$$"exec "$@" > "${out}.$$"

⌨️ 快捷键说明

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