All examples for RDSEG2
# Using file masks and file lists
#------------------------------------------------------------
*call rdseg2 10 5000
files record.seg2 # read a single file
files record*.seg2 # read all files satisfying the UNIX mask
files /data/June*/record[a-c].segy
files /data/June01/rec%04d # read files rec000`, rec0002, rec0010
1,2,10-22 # rec0011, ..., rec0022 from directory
# /data/June01 (this is how BISON data are
# usually stored, and how PROMAX does its
# "floppy read"
files /data/June*/rec%04d # a combination of the above
files /data/June01/rec.%d # similar to the above, but file numbers
1,2,10-22 # are without zero padding: rec.1, rec.2, etc.