merge4.sh

来自「su 的源代码库」· Shell 代码 · 共 34 行

SH
34
字号
#! /bin/sh#/*********************** self documentation **********************/# MERGE4 - put 4 standard size PostScript plots on one page## Usage: merge4 ulfig urfig llfig lrfig## Note: Translation values are hard-coded numbers that work well for #	standard size (8.5 x 11) figures.# See selfdoc of:   psmerge   for further information#/**************** end self doc ********************************/# Author: Craig ArtleyBINDIR=${CWPROOT}/bincmd=`basename $0`case $# in	4) # OK	;;	*) # echo some documentation		echo		echo "MERGE 4 figures onto one page" 1>&2		echo		echo "Usage: $cmd ulfig urfig llfig lrfig" 1>&2		exit 1	;;esac${BINDIR}/psmerge in=$1 scale=0.5,0.5 translate=0.5,5.25 \	in=$2 scale=0.5,0.5 translate=4.25,5.25 \	in=$3 scale=0.5,0.5 translate=0.5,0.25 \	in=$4 scale=0.5,0.5 translate=4.25,0.25

⌨️ 快捷键说明

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