#!/bin/sh ### ==================================================================== ### Ray tracing for different source-receiver configurations (Unix) ### (for all 236 sources remove command n=1 below) ### ==================================================================== ### Deleting old recording of the screen output: rm elf1bscr.out 2>/dev/null ### -------------------------------------------------------------------- n=236 n=1 j=0 while [ \( $j -lt $n \) -a \( $j -lt 9 \) ] do j=`expr $j + 1` srpcrt elf1b 00$j done while [ \( $j -lt $n \) -a \( $j -lt 99 \) ] do j=`expr $j + 1` srpcrt elf1b 0$j done while [ $j -lt $n ] do j=`expr $j + 1` srpcrt elf1b $j done ### ====================================================================