If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

 
Go Back  dBforums > Data Access, Manipulation & Batch Languages > Unix Shell Scripts > Convert text file to XML using Born shell scripts

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 10-21-05, 00:18
ram2s2001 ram2s2001 is offline
Registered User
 
Join Date: Oct 2005
Posts: 17
Convert text file to XML using Born shell scripts

If someone out there could help me out with this problem.

Last edited by ram2s2001; 12-14-05 at 08:53.
Reply With Quote
  #2 (permalink)  
Old 10-21-05, 02:59
pdreyer pdreyer is offline
Registered User
 
Join Date: May 2005
Location: South Africa
Posts: 1,268
Maybe someone has a better idea, but this should get you started
Code:
#!/usr/bin/sh
infile=$1
outfile=$2
>$outfile # truncate out file
cat $infile | while read line
do
  rectype=`echo $line | cut -c 1-2`
  if [ "$rectype" = "01" ]
  then 
    contrycode=`echo $line | cut -c 3-4`
    # and other fields
    cat <<EOF >>$outfile
<header>
<headid>$rectype</headid>
<contry>$contrycode</country>
    # and other fields
</header>
EOF
  fi
  #if [ "$rectype" = "10" ]
  #...
done

Last edited by pdreyer; 10-21-05 at 08:51.
Reply With Quote
  #3 (permalink)  
Old 10-22-05, 01:16
ram2s2001 ram2s2001 is offline
Registered User
 
Join Date: Oct 2005
Posts: 17
xml to text file

Thanks lot for your code ,do you have any idea to convert same xml file to text file(fixed lengths).

Last edited by ram2s2001; 10-22-05 at 03:35.
Reply With Quote
  #4 (permalink)  
Old 10-28-05, 07:07
ram2s2001 ram2s2001 is offline
Registered User
 
Join Date: Oct 2005
Posts: 17
Text file to xml

When iam trying to execute this script :sysntax error :"Unexpected end of

Last edited by ram2s2001; 12-14-05 at 08:54.
Reply With Quote
  #5 (permalink)  
Old 11-26-05, 04:59
ram2s2001 ram2s2001 is offline
Registered User
 
Join Date: Oct 2005
Posts: 17
tyrtyr

testhdfghfhfghfg
Reply With Quote
Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On