Awk replacement problem


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Awk replacement problem
# 1  
Old 10-28-2010
Awk replacement problem

Hello everyone,
I have a problem with awk replacement... I need to replace "|\n" for "\n"
I tried this
Code:
awk '{ sub(/\|\\n/, "\\n"); print }'

but it seems like it doesn't work properly. Can anyone help with that?
# 2  
Old 10-28-2010
Does it have to be AWK?
Code:
perl -pe 's/\|\\n/\\n/' file

# 3  
Old 10-28-2010
Yes, it should be awk... But i have got an idea... I am going to try it first... i wonder if it is catch...
# 4  
Old 10-28-2010
Your first attempt works if "\n" is a literal string within your file:
Code:
$ cat test1
one two|\nmore
another line
done|\n
$ awk '{ sub(/\|\\n/, "\\n"); print }' test1
one two\nmore
another line
done\n

But I think you probably want to remove a pipe character from the end of any line (correct?):
Code:
$ cat testfile
one two three|
no pipe
done|
$ awk '{ sub(/\|$/, ""); print }' testfile
one two three
no pipe
done


Last edited by Chubler_XL; 10-28-2010 at 06:54 PM..
This User Gave Thanks to Chubler_XL For This Post:
# 5  
Old 10-29-2010
Yes correct Smilie Thank you... It works...
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Beginners Questions & Answers

sed or awk Replacement/Addition

Hi, I have a big text file with similar data as below and need the text as in output using awk or sed. any help is greatly appreciated. Input: City=Chicago Elden street >>> reservedBy = business 1 >>> reservedBy = business 2 >>> reservedBy = business 3 City=Dallas Elm street >>>... (5 Replies)
Discussion started by: tech_frk
5 Replies

2. Shell Programming and Scripting

Text replacement with awk or sed?

Hi guys, I worked for almost a half-day for the replacement of some text automatically with script. But no success. The problem is I have hundred of files, which need to be replaced with some new text. It's a painful work to work manually and it's so easy to do it wrong. For example, I... (2 Replies)
Discussion started by: liuzhencc
2 Replies

3. Shell Programming and Scripting

Incomplete replacement/substitution awk

Hi! (I'm just a newbie in awk & bash scripts) I have a script which replaces one column from an input file with a specified one from the same file. The input and the desired output files are shown below. ~ cat input.file random text Fe 1.33 23.23 3.33 C 21.03 23.23 3.33 Cu 0.00 ... (2 Replies)
Discussion started by: radudownload
2 Replies

4. Shell Programming and Scripting

awk's gsub variable in replacement

I been trying to figure out how to use element of array as a replacement pattern. This works as I expected: $ echo "one two three" | awk '{ gsub(/wo/,"_BEG_&_END_",$2); print }' one t_BEG_wo_END_ three $ echo "one two three" | awk '{ tmp="foo"; gsub(/wo/,"_BEG_" tmp "_END_",$2);... (5 Replies)
Discussion started by: mirni
5 Replies

5. Shell Programming and Scripting

awk replacement problem

hi i am using awk for first time so i am having issue is it the correct way of using Y here is variable which i fetch using grep from file awk -v X={$Y} { if ($0 ~ /X/ ) { sub (out.*/,"out1",$0) } print 0 }, filename > temp when i look into temp file i dont see any replacement... (9 Replies)
Discussion started by: xyzstar
9 Replies

6. Shell Programming and Scripting

Awk replacement

Hi all, I need help in replacing awk with sed for the below. 1 ) cat list | awk -F" |," '/MATH/ {sub(/]*/,"",$3); print $3}' Eg: file : list Sno Subno Name 1 SUB1 ENG 2 SUB2 MATH 2) Eg:result Total No of Students: 2 Sno ID Sub ------------------ 1 ... (3 Replies)
Discussion started by: priyam
3 Replies

7. UNIX for Dummies Questions & Answers

awk pattern replacement

Hi I'm a newbie in unix and I'm having trouble in creating a script. I want to search for a pattern '_good' and insert new lines that contains '_bad', '_med', '_fail' while also ensure that the line contains _good is removed here some of the data UPDATE SCHOOL SET GRADE =... (1 Reply)
Discussion started by: sexyTrojan
1 Replies

8. Shell Programming and Scripting

perl as awk replacement in a script.

Hey all, Im trying to write a script on windows, which Im not too familiar with. Im generally a bash scripting guy but am using perl for this case. My question is... I have this exact output: 2 Dir(s) 6,380,429,312 bytes free and I just need to get the number out... (4 Replies)
Discussion started by: trey85stang
4 Replies

9. Shell Programming and Scripting

AWK String replacement

I have an xml file with following tags <NewTag>value123</xyz> <NewTag>value321</abcd> I have to replace the values in between the tags with some value ( VAL1/VAL2) but the thing the ending tag can be any thing, for this i need a awk command currently i am using this but it... (5 Replies)
Discussion started by: subin_bala
5 Replies

10. Shell Programming and Scripting

Awk variable replacement

I have a function awkvarrep() { awk -F'|' '$1~/$1/{printf "%-10s %-30s %-15s %-30s %-15s\n", $2,$3,$4,$5,$6}' testfile } I'm calling it by this VARREP=XYZ awkvarrep $VARREP since i'm passing $VARREP to the awkvarrep() function I want to use this with $1 but it dosen't seem to be... (5 Replies)
Discussion started by: iAm4Free
5 Replies
Login or Register to Ask a Question