Search Results

Search: Posts Made By: jazzman58
1,890
Posted By jazzman58
You're not really giving much information, but...
You're not really giving much information, but you could always start by keeping a count of the record being processed and throw out the first and last.

wc -l inputfile | read totalrecs

Will...
5,790
Posted By jazzman58
Here's a quick and dirty shell script to do the...
Here's a quick and dirty shell script to do the job. Handles any data.


#!/bin/ksh
infile="convertdata"
outfile="converteddata"
function filecleanup
{
if [[ -f $1 ]] ; then
rm $1
...
Showing results 1 to 2 of 2

 
All times are GMT -4. The time now is 06:10 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy