Help on cat with sed!


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Help on cat with sed!
# 1  
Old 07-28-2009
Help on cat with sed!

Hi All!

I have a script having one statement like.

cat xfile | sed 's/A/a/g' > xfile

I have two boxes which have similar version of linux running but one is greater in speed compared to other. Lets say A is faster than B.

A which is faster writes output as NULL
B which is slower comparatively to A writes the entire content with A replaced to a
. Though I know its not a good practice. I want to know why is this behavior. Is there some delay writing in one compared to the other ? I remmeber comming across this jargon in buffer cache

Thanks
Balaji Kamal Kannadassan
# 2  
Old 07-28-2009
What do you mean 'writes output as NULL' - no output all ?

If you are asking 'why do I get different output for the same command on the same data?'

The answer lies in how the environment is set up. As a simple example, there may be alias settings which change the behavior of commands for example.
# 3  
Old 07-28-2009
Tools Your output and input filenames are the same

Unusual results can occur when input and output filenames are the same. Most of the time that I have seen, your command line will result in xfile being an empty file. Try again on both machines, but put output to to xfile2.
# 4  
Old 07-28-2009
Image joeyg

thanks for the response, but the problem is irrespective of any number of tries both shows such a difference in behavior. Is there anyway this behavior can be identified i.e the reason for this behavior.
# 5  
Old 07-28-2009
If the output had been different then the story is different.
But what you are saying is that there is no output in one of them.
The reason could be any thing.
It will be easier if you post the data also.

1. While moving the code you may have missed to move it as binary?
Check if the input has CR/LF (like DOS file).<-- I would bet on this.
Check if the code has CR/LF (like DOS file).

2. There could be some issues with the environment variables.
For example (this may or may not apply to your case):
If your input is delimited with tab, then IFS is important.
If the variable is messed up then you will have issues.

3. There may be permission issues.
Or "tmp" directory is filled up or quota is not enough.

4. May be the version of SED are different.
"whence" command and file date and size should confirm that.

5. Run your code with the trace.
ksh -x myscript.sh
Add a few echo's and see what is happening.

6. Run the same command at the prompt and see if it works.

Just for the heck of it, can you post the input data also?
# 6  
Old 07-29-2009
Ok edidata to be more specific and clear cat x | sed 's/A/a/g' > x. Where x is say a file then the output in one case is empty i.e file x is now empty even the old content is gone. In another case x which had some text with 'A' has replace with 'a' and is written into file. BTW checked sed version cat version linux kernel version all are same in the box only difference is one is faster than the other in speed.
# 7  
Old 07-29-2009
Oh.. boy!
The problem has nothing to do with the server...Smilie
It is with your code.
This is wrong:
Code:
cat x | sed 's/A/a/g' > x

It should read as:
Code:
cat infile | sed 's/A/a/g' > outfile

The input file name and the output file name CANNOT be the same.
That is why you are getting 0 byte file.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Need to add prefix using sed or awk from cat the file

I need the use sed or AWK using cat the file Node1 TDEV RW 1035788 TDEV RW 1035788 Server1 TDEV RW 69053 Server2 TDEV RW 69053 TDEV RW 103579 Server3 TDEV RW 69053 server4 RDF1+TDEV RW 69053 RDF1+TDEV RW 517894 RDF1+TDEV RW 621473 server6 TDEV RW 34526 TDEV RW 34526 (22 Replies)
Discussion started by: ranjancom2000
22 Replies

2. UNIX for Dummies Questions & Answers

How to cat via ssh and sed at the same time.?

I am trying to write a script to automatically create conf files and remote servers. I would like to do all this without creating files locally and copying them . Here is what I have tried. sitename=$1 prodserver=$2 ssh $prodserver "cat > /data/$sitename.conf" << cat |sed... (5 Replies)
Discussion started by: macrossm
5 Replies

3. UNIX for Dummies Questions & Answers

emulating cat in sed with q option

Hi, I am aware that the below are the equivalent in sed for cat command. sed ':' sed -n 'p' Is there any way to emulate the same using "q" option in sed? Thanks (8 Replies)
Discussion started by: pandeesh
8 Replies

4. UNIX for Advanced & Expert Users

cat / sed process weird characters

Hi everyone, I'm trying to write a shell script that process a log file. The log format is generally: (8 digit hex of unix time),(system ID),(state)\n My shell script gets the file from the web, saves it in a local text directory. I then want to change the hex to decimal, convert from unix time... (7 Replies)
Discussion started by: bencpeters
7 Replies

5. Shell Programming and Scripting

grep or cat using sed

Is there a way using grep or cat a file to create a new file based on whether the first 9 positions of each record is less than 399999999? This is a fixed file format. (3 Replies)
Discussion started by: ski
3 Replies

6. Shell Programming and Scripting

want to pass sentence with SED and CAT

I have to pass a sentence in a file, the specs are as: cat run | sed 's/SRT/'$8'/g' | sed 's/plength/68/g' | sed 's/stcol/'$5'/g' | sed 's/encol/'$6'/g' | sed 's/brdtype/'$1'/g' | sed 's/brdtxt/'$3'/g' | sed 's/demotxt/Total '$2'/g' | sed 's/bantxt/ban_'$7'/g' | sed 's/validcodes/'$4'/g' > runx... (1 Reply)
Discussion started by: patilrakesh1984
1 Replies

7. UNIX for Dummies Questions & Answers

tr, sed, awk, cat or scripting

I need to change all Newline caracters (\12) to Fieldseparator(\34). tr -A '\12' '\34' <file1> file2 Replace all delete (\177) with Newline (\12) tr -A '\177' '\12' <file2> file3 Put the name of the file first in all rows. awk '{printf "%s\34%s\n", FILENAME,$0} file3 > file4 So far no... (6 Replies)
Discussion started by: MrKlint
6 Replies

8. UNIX for Dummies Questions & Answers

Difference between cat , cat > , cat >> and touch !!!

Hi Can anybody tell the difference between Difference between cat , cat > , cat >> and touch command in UNIX? Thanks (6 Replies)
Discussion started by: skyineyes
6 Replies

9. UNIX for Advanced & Expert Users

use of sed over cat to merge files

I have three files, basically: file 1 - one line header file 2 - big data (approx 80GB) file 3 - a one line trailer the existing process cats these together i.e cat file 1 file 2 file 3 however... I was thinking, surely it could be more efficient to insert the header (file 1) on the... (2 Replies)
Discussion started by: miwinter
2 Replies

10. UNIX for Dummies Questions & Answers

How to use cat command in sed pattern searching

Hi All, I have a file named pattern.dat which contains pattern like A1000090 250.00 250.00 i have one more file named test.dat in which this pattern is present. What i should do is, in test.dat after this pattern i should append comments. i used... (4 Replies)
Discussion started by: Sona
4 Replies
Login or Register to Ask a Question