Parsing a variable length record


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers Parsing a variable length record
# 15  
Old 09-29-2004
MySQL

YEAHHHHHHHHHHHHHHHHHHHHHH - it worked - I'm still trying to figure out how - but it works! Thank you!Smilie
# 16  
Old 09-30-2004
Thought I would share the final product with you. This is giving the company what it needed. I know my coding leaves alot to be desired and any critiques are welcome. I'm just learning again and I can usually get it accomplished - but it ain't pretty. Thanks again for all your help!

#VARIABLES
DATE=$(date +%y%m%d)
TIME=$(date +%T)

# Move today's files into the current directory
cp /lawprd/law/logan/edi_arch_inb/GMED*$DATE* .

# Join all of todays files together
cat GMED*$DATE* > GMED.wrk

#prt header on top of missing540.lst file
echo "$DATE $TIME" > missing540.lst
echo "" >> missing540.lst
echo " Missing GMED Records Report: $TIME" >> missing540.lst
echo "----------------------------------------------" >>missing540.lst

sed -n '/\~ST\^/{N;s/\n//;s/.*\~ST\^//p;}' < GMED.wrk | awk -F "^" '/856\^/ { print $4 }' >ponumber
sed -n '/\~ST\^/{N;s/\n//;s/.*\~ST\^//p;}' < GMED.wrk | awk -F "^" '/810\^/ { print $6 }' >>ponumber

#Pull the requisition numbers out of the MA540CSV file
awk -F "," '/,H,/ { print $10 }' /lawprd/law/prod/work/MA540CSV/MA540CSV >csvnums

#Resort the files and remove duplicate records
sort -u ponumber >po2
sort -u csvnums >csv2

#Write the differences between the inbound and the csv and send them out to a file.
diff po2 csv2 | awk '{if( $2 != "") print $2}' >>missing540.lst

#Remove all the GMED files from the current directory
rm GMED*

#Send the output to cypress
qprt -p17 -z1 -Pcypresst missing540.lst
# 17  
Old 10-01-2004
Note: I have moved the password generation stuff to this thread.


Meanwhile, back at the ranch....

Good work, Barb. But I don't see a #! line as line one. See What does "#! /usr/bin/ksh" mean?
# 18  
Old 10-01-2004
Thank you - it is there now and apologize for interrupting the password thread.
 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Convert variable length record to fixed length

Hi Team, I have an issue to split the file which is having special chracter(German Char) using awk command. I have a different length records in a file. I am separating the files based on the length using awk command. The command is working fine if the record is not having any... (7 Replies)
Discussion started by: Anthuvan
7 Replies

2. Shell Programming and Scripting

Record length

Hi, The record length may be differ in afile. I want to display the records if the record length is not equal to 50 using sed/awk command. Thanks in Advance (6 Replies)
Discussion started by: NareshN
6 Replies

3. Shell Programming and Scripting

changing a variable length text to a fixed length

Hi, Can anyone help with a effective solution ? I need to change a variable length text field (between 1 - 18 characters) to a fixed length text of 18 characters with the unused portion, at the end, filled with spaces. The text field is actually field 10 of a .csv file however I could cut... (7 Replies)
Discussion started by: dc18
7 Replies

4. Shell Programming and Scripting

Make variable length record a fixed length

Very, very new to unix scripting and have a unique situation. I have a file of records that contain 3 records types: (H)eader Records (D)etail Records (T)railer Records The Detail records are 82 bytes in length which is perfect. The Header and Trailer records sometimes are 82 bytes in... (3 Replies)
Discussion started by: jclanc8
3 Replies

5. Shell Programming and Scripting

Check length of record

Hi, I have a problem, please help me, I have a flat file like this: P00000000088888888999999999 0000999903 000000000000000000 P00000000077777777000000000 0000999903 000000000000000000 P00000000044444444333333333 0000999903 00000000000000000079875 P00000000066666666111111111 0000999903 ... (5 Replies)
Discussion started by: DebianJ
5 Replies

6. Shell Programming and Scripting

Parsing a variable length file

Hi I am new to shell scripting. I need to parse a file which contains the header and detail records and split into n of file based on dept ID, for ex. INPUT FILE: DEPT ID: 1 EMPNAME: XYZ EMPAddress: XYZZZ DEPT ID: 2 EMPNAME: ABC EMPAddress: ABCD DEPT ID: 1 EMPNAME: PQR EMPAddress:... (6 Replies)
Discussion started by: singhald
6 Replies

7. UNIX for Dummies Questions & Answers

What the command to find out the record length of a fixed length file?

I want to find out the record length of a fixed length file? I forgot the command. Any body know? (9 Replies)
Discussion started by: tranq01
9 Replies

8. Shell Programming and Scripting

Pivot variable record length file and change delimiter

Hi experts. I got a file (500mb max) and need to pivot it (loading into ORCL) and change BLANK delimiter to PIPE |. Sometimes there are multipel BLANKS (as a particular value may be BLANK, or simply two BLANKS instead of one BLANK). thanks for your input! Cheers, Layout... (3 Replies)
Discussion started by: thomasr
3 Replies

9. Shell Programming and Scripting

creating a fixed length output from a variable length input

Is there a command that sets a variable length? I have a input of a variable length field but my output for that field needs to be set to 32 char. Is there such a command? I am on a sun box running ksh Thanks (2 Replies)
Discussion started by: r1500
2 Replies

10. Shell Programming and Scripting

Parsing data and retaining the full length of variable

Here's is an example of what I want to do: var1="Horse " var2="Cat " var3="Fish " for animals in "$var1" "$var2" "$var3" do set $animals pet=$1 ## Ok, now I want to get the values of $pet, but ## I want to retain the full length it was... (3 Replies)
Discussion started by: app4dxh
3 Replies
Login or Register to Ask a Question