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

📄 merge4.sh

📁 su 的源代码库
💻 SH
字号:
#! /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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -