#!/bin/ksh
# Use the Set command to designate a variable as a
# simple, 1 dimentional Array.
set -A line_array
# Designate an incoming File Name
file_name='test.dat'
# I use simple array index variables. Arrays in the
# k-shell start with an index of 0.
i=0
# Read a line of data from the Incoming File into the
# variable file_line. Note that the data...
Read More