Do syntax is correct ?


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Do syntax is correct ?
# 1  
Old 04-20-2011
Do syntax is correct ?

I tried with sed command to create a space between namespace from the XML file. I used this syntax. Can someone tell me is this syntax is vaild?

Code:
/usr/xpg4/bin/sed  -e 's/<\/^.*><^.:Errort>/<\/^.*> <^.:Errort>/g' test > test2

I dint find any changes or any space being created between these namespace.
# 2  
Old 04-20-2011
Maybe with something like this:
Code:
sed 's/><^.:Errort>/> <^.:Errort>/g' test > test2

# 3  
Old 04-21-2011
Result is the same, Space is not getting created when i used

Code:
<^.:Errort>

But space will get created when i used the exact expression , something like this.

Code:
<ns1:Errot>

But this expression ns1 changes in many of the scenarios, so instead of this I need to use Regex. Can you get me the exact regex that needs to be used.
# 4  
Old 04-21-2011
Try:
Code:
sed 's/><[^>]*:Errort>/> <^.:Errort>/g' test > test2

# 5  
Old 04-21-2011
This works for me:
Code:
sed 's/\(<\/[^>]*>\)\(<[^:]*:\)/\1 \2/g' test > test2

Regards,
Mark.
# 6  
Old 04-21-2011
Thanks for your precious input, both of your syntax worked very well.

Mark

Can you explain me the syntax, since your syntax worked for both opening and closing namespace.

---------- Post updated 04-21-11 at 12:00 AM ---------- Previous update was 04-20-11 at 11:47 PM ----------

Mark,

Your syntax has created one space between all the namespaces, but indeed i just required particularly for this namespace <ns1:Errort> </ns1:Errort>

Last edited by raghunsi; 04-21-2011 at 04:58 AM..
# 7  
Old 04-21-2011
Earlier you wrote:

Quote:
But this expression ns1 changes in many of the scenarios, so instead of this I need to use Regex
I took that to mean that you wanted a space between all namespaces. So I'm not quite clear on what you're asking for exactly.

Here are some more options:
Code:
sed 's/\(<\/[^>]*>\)\(<[^:]*:Errort\)/\1 \2/g' test > test2
sed 's/\(<\/[^>]*>\)\(<ns[0-9]*:Errort\)/\1 \2/g' test > test2
sed 's/\(<\/[^>]*>\)\(<ns1:Errort\)/\1 \2/g' test > test2

Regards,
Mark.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Beginners Questions & Answers

How to form a correct syntax to sift out according to complementary patterns with 'find'?

I need to find all files and folders containing keyword from the topmost directory deep down the tree but omitting all references to keyword in web-search logs and entries, i.e. excluding search and browsing history made using web-browser1, web-browser2, web-browser3, (bypassing all entries of the... (8 Replies)
Discussion started by: scrutinizerix
8 Replies

2. OS X (Apple)

Can't figure out the correct syntax for a command loading a webkit plugin

Hello, Using Bash on Mac OS X 10.7.5 (Lion). I downloaded a GrowlSafari plugin for Webkit from its GitHub page GitHub - uasi/growl-safari-bridge: GrowlSafariBridge enables arbitrary javascript (including Safari Extensions) to notify via Growl.. In the description it says that after installing for... (0 Replies)
Discussion started by: scrutinizerix
0 Replies

3. Shell Programming and Scripting

Cannot find correct syntax to make file name uppercase letters

I have a file name : var=UsrAccChgRpt I want to make them upper case. Tried: $var | tr Error: tr: Invalid combination of options and Strings. Usage: tr | -ds | -s | -ds | -s ] String1 String2 tr { -d | -s | -d | -s } String1 Could you please help. I am using AIX... (2 Replies)
Discussion started by: digioleg54
2 Replies

4. UNIX Desktop Questions & Answers

Correct syntax

Hi, I want to check if file(s) exist even in subdirectories and perform an action. After searching here couldn't find solution that would work, but made my own solution that works fine: if then echo egrep "$1|$2|$3" `find| grep MLOG` else echo "MLOG does not exist" fiThat will check... (1 Reply)
Discussion started by: Vitoriung
1 Replies

5. Shell Programming and Scripting

Need Correct syntax for "if" in UNIX

I am trying to write a simple if statement but that driving me crazy:eek: with syntactical erorrs. This is what I managed to come up #!/bin/ksh USERNAME=`whoami` if ;then echo " you have logged in as report user" elif ; then echo " you have logged in as extract user" else " I dont... (3 Replies)
Discussion started by: kkb
3 Replies

6. Shell Programming and Scripting

if [ $NOWDATE -gt $STARTDATE ] , date comparison correct syntax?

i've looked at a bunch of the date comparison threads on these boards but unfortunately not been able to figure this thing out yet. still confused by some of the way conditionals handle variables... here is what i where i am now... # a bunch of initializition steps are here ...... (1 Reply)
Discussion started by: danpaluska
1 Replies

7. Shell Programming and Scripting

Plz correct my syntax of shell script

Dear all I am still bit new in shell script area.I am writing down a shell script which I guess somewhere wrong so please kindly correct it. I would be greatful for that. What I actually want from this shell script is that it will move all the files one by one to another server which can be... (2 Replies)
Discussion started by: girish.batra
2 Replies

8. Shell Programming and Scripting

Pls correct the "if" syntax

Iam a learner of UNIX. Fortunately I got this site. I want to check the file for its existance. if echo " Not present" else echo "Present" fi The above code is working fine. But I also want to check for the files which are compressed. I tried the following code and it is not... (5 Replies)
Discussion started by: ganapati
5 Replies

9. UNIX for Dummies Questions & Answers

correct syntax for using "grep regex filename" ?

I'm trying to grep a long ls by looking at the beginning of each filename for example: Many files begin with yong_ho_free_2005... Many files begin with yong_ho_2005... I can't just use "grep yong_ho" otherwise It'll display both files. So I'm trying to use a regex but my syntax is wrong. ... (2 Replies)
Discussion started by: yongho
2 Replies

10. Shell Programming and Scripting

Correct Syntax For Calling Shell Script in Perl Module

Problem: I have a shell script that will be called by a Perl module that will connect to a db and delete rows. The Perl module will be called by CRON. I am using a Perl module to call a shell script because I need to get the db connection from Perl. Here is the Perl pseudocode: ... (4 Replies)
Discussion started by: mh53j_fe
4 Replies
Login or Register to Ask a Question