Need get data from XML file through shell script..


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Need get data from XML file through shell script..
# 15  
Old 05-13-2019
Quote:
Originally Posted by RudiC
man paste:


HOW did you resolve the issue?
Hi Rudi, i have made your code in shell script as below

daslog.sh
Code:
grep -E "<(timestamp|severity|message)" das.xml | paste -sd"\t\t\n" | grep -E "ERROR" | tr '\t' '\n' >> dasoutput.log

and set up cronjob like
Code:
 * * * * * /local/flamingo/log/das/daslog.sh >> /local/flamingo/log/das/output.log >> /local/flamingo/log/das/output.log

here the problem is if i run shell script manually it is updating dasoutput.log but through cronjob its not updating dasoutput.log.

can you help me on this.

--- Post updated at 07:28 AM ---

hi all,
i have made below code in shell script as below

daslog.sh
grep -E "<(timestamp|severity|message)" das.xml | paste -sd"\t\t\n" | grep -E "ERROR" | tr '\t' '\n' >> dasoutput.log

and set up cronjob like
* * * * * /local/flamingo/log/das/daslog.sh >> /local/flamingo/log/das/output.log >> /local/flamingo/log/das/output.log

here the problem is if i run shell script manually it is updating dasoutput.log but through cronjob its not updating dasoutput.log.

can any one help me on this.
# 16  
Old 05-13-2019
That cron job looks suspect. Do you really want it to trun every minute? Do you really need to redirect stdout twice? Do you receive an error mail?


And, the redirection in daslog.sh will override the redirection in crontab. Look for dasoutput.log in the user's home directory.
This User Gave Thanks to RudiC For This Post:
# 17  
Old 05-13-2019
Quote:
Originally Posted by RudiC
That cron job looks suspect. Do you really want it to trun every minute? Do you really need to redirect stdout twice? Do you receive an error mail?


And, the redirection in daslog.sh will override the redirection in crontab. Look for dasoutput.log in the user's home directory.
no for testing , i made it for every minute and i tried with

* * * * * /local/flamingo/log/das/daslog.sh > /local/flamingo/log/das/output.log >> /local/flamingo/log/das/output.log this way also but not working.
# 18  
Old 05-13-2019
Please answer ALL questions.
This User Gave Thanks to RudiC For This Post:
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Pass some data from csv to xml file using shell/python

Hello gurus, I have a csv file with bunch of datas in each column. (see attached) Now I have an .xml file in the structure of below: ?xml version="1.0" ?> <component id="root" name="root"> <component id="system" name="system"> <param name="number_of_A" value="8"/> ... (5 Replies)
Discussion started by: Zam_1234
5 Replies

2. Shell Programming and Scripting

How to extract data from XML file using shell scripting?

Hi , I have input file as XML. following are input data #complex.xml Code: <?xml version="1.0" encoding="UTF-8"?><TEST_doc xmlns="http://www.w3.org/2001/XMLSchema-instance"> <ENTRY uid="123456"> <protein> <name>PROT001</name> <organism>Human</organism> ... (1 Reply)
Discussion started by: arun_kohan
1 Replies

3. Shell Programming and Scripting

How to extract data from xml file using shell scripting?

Hi evry1, This is my 1st post in this forum.Pls help me I want to extract some data froma xml file which has 2000 lines using shell scripting. Actually my xml file has some "audio and video codes" which i need to arrange in a column wise format after extracting it using shell scripting.I... (4 Replies)
Discussion started by: arun_kohan
4 Replies

4. UNIX for Advanced & Expert Users

Shell Script to read XML tags and the data within that tag

Hi unix Gurus, I am really new to Unix Scripting. Please help me to create a shell script which reads the xml file and from that i need to fetch a particular information. For example <SOURCE BUSINESSNAME ="" DATABASETYPE ="Teradata" DBDNAME ="DWPROD3" DESCRIPTION ="" NAME... (2 Replies)
Discussion started by: SmilePlease
2 Replies

5. Shell Programming and Scripting

How to Parse the XML data along with the URL in Shell Script?

Hi, Can anybody help to solve this. I want to parse some xmldata along with the URL in the Shell. I'm calling the URL via the curl command Given below is my shell script file export... (7 Replies)
Discussion started by: Megala
7 Replies

6. Shell Programming and Scripting

Shell script to extract data in repeating tags from xml

Hi, I am new to shell scripting. I need to extract data between repeating tags from an xml file and store the data in an array to process it further. <ns1:root xmlns:ns1="http://example.com/config"> <ns1:interface>in1</ns1:interface> <ns1:operation attribute1="true" attribute2="abd"... (2 Replies)
Discussion started by: sailendra
2 Replies

7. Shell Programming and Scripting

Convert XML to Data File in Shell Script

Hi All, I will be getting a huge XML file with a lot of records in it. I need to convert it into multiple data files. SAMPLE XML FILE <ABSProductCatalog xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> - <ProductSalesHierachy> - <Portfolios> - <Portfolio productCode="P1"> ... (8 Replies)
Discussion started by: ragha81
8 Replies

8. Shell Programming and Scripting

How to remove xml namespace from xml file using shell script?

I have an xml file: <AutoData xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <Table1> <Data1 10 </Data1> <Data2 20 </Data2> <Data3 40 </Data3> <Table1> </AutoData> and I have to remove the portion xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" only. I tried using sed... (10 Replies)
Discussion started by: Gary1978
10 Replies

9. Shell Programming and Scripting

Help with shell script to extract data from XML file

Hello Scripting Gurus, I need help with extracting data from the XML file using shell script. The data is in a large XML and I need to extract the id values of all completedworkflows. Here is a sample of it. Input and output data is also in the attached text files. <wfregistry>... (5 Replies)
Discussion started by: yajaykumar
5 Replies

10. Shell Programming and Scripting

extract data from xml- shell script using awk

Hi, This is the xml file that i have. - <front-servlet platform="WAS4.0" request-retriever="SiteMinder-aware" configuration-rescan-interval="60000"> <concurrency-throttle maximum-concurrency="50" redirect-page="/jsp/defaulterror.jsp" /> - <loggers> <instrumentation... (5 Replies)
Discussion started by: nishana
5 Replies
Login or Register to Ask a Question