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

📄 suwrite.help

📁 su 的源代码库
💻 HELP
字号:
SUWRITESUWRITE converts ProMax data to SU format and either writesit to an SU data file or pipes it into a Unix script file to be read by the SU module "suget".  The output from "suget" can piped on to other SU modules for further processing prior towriting an output file.Parameters:	defaults:		definition:CHOOSE1		Choose type of input.		SU_command		Pipe output data to become					the standard input to this					SU command.		SU_data_file  		Will write output data directly 					to SU file.						SU_command_file		Will enter name of SU command 					file and write output to the 					SU program suget. (see below)CMNDFILE	Path to SU command file including file name.DATAFILE	Path to SU data file including file name.SU stands for Seismic Unix which is a collection of public domainsoftware developed by the Center for Wave Phenomina at the ColoradoSchool of Mines based on an earlier system developed at StanfordUniversity.  One can obtain the SU system by anonymous ftp over theInternet.  Enterftpopen hilbert.mines.colorado.educd pubcd cwpcodesget README_BEFORE_UNTARRINGget cwp.su.all.21.tar.Z... you may want to get some of the other files too ...quituncompress cwp.su.all.21.tar.Ztar -xvf cwp.su.all.21.tarThen, you have to look at all the installation documentation andfigure out how to compile and link all the modules together.  Ona system where SU is already installed, you can enter "suhelp"to get a list of available modules or the name of a module withoutparameters to get the self documentation for that module.An example SU script to receive data from an external system output module could be:#! /bin/shsuget fd=$1 | supswigb > display.psexit 0In this example, the SU module "suget" receives the piped data on the Unix file descriptor "$1" passed by ProMax as the first argument to the command file.  It pipes the data on to an SU plotting module which outputs a postscript file.  On our system, we have a publicdomain program called ghostscript which will display a postscriptfile on the screen.  To make a screen display of the postscriptfile "display.ps" on our system, enter "gs display.ps".  Thestandard Unix "lpr" command can be used to send the plot to apostscript printer.For our purposes, postscript displays are needed to include inreports and theses.  The SU system has modules available to make postscript wiggle trace, contour, and image displays.  We mayhave several versions of swrite in our ProMax menu system witheach pointing to a commonly used command file for a particulartype of display.The philosophy behind SU is based on modular programs, Unix scripts,and connecting pipes.  Many SU modules need to be run as part of a script that does looping and parameter substitution to be really  effective, as each module has been kept relatively simple fortutorial reasons.  This approach allows ProMax data to be piped to SU programs and output data files in a flexible manner.  Note: This documentation assumes the user has knowledge of SU scripts.The code has only been tested on IBM RS-6000 systems.

⌨️ 快捷键说明

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