Problem with sed


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Problem with sed
# 15  
Old 09-25-2011
AFAIK, I don't think sed recognizes any column.

--ahamed
# 16  
Old 09-25-2011
What about grep, or awk? Is there anything I can do?
# 17  
Old 09-25-2011
you need to add something in the 3rd row 10th column? How do you separate the column? space?
And do you have a pattern? I mean is it always at the 3rd row?

--ahamed

---------- Post updated at 02:04 PM ---------- Previous update was at 01:45 PM ----------

I really don't know what you are trying to accomplish. The following code will add blank lines and then insert the value at the specified row.

Code:
val=123
row=5
awk -v row=$row -v file=file ' BEGIN{cmd="wc -l " file;cmd|getline;new_line=row-$1; while(new_line>0){print "" >> file;new_line--;}} ' file 
&& sed -i "$row i $val" file

--ahamed

Last edited by ahamed101; 09-25-2011 at 05:56 PM..
# 18  
Old 09-25-2011
Well the idea is that im creating a paint program. So the file starts as a canvas of black escape codes. So here is what the input file would look like:

Code:
\E[0;40m \E[0;40m \E[0;40m \E[0;40m \E[0;40m \E[0;40m \E[0;40m
\E[0;40m \E[0;40m \E[0;40m \E[0;40m \E[0;40m \E[0;40m \E[0;40m
\E[0;40m \E[0;40m \E[0;40m \E[0;40m \E[0;40m \E[0;40m \E[0;40m
\E[0;40m \E[0;40m \E[0;40m \E[0;40m \E[0;40m \E[0;40m \E[0;40m
\E[0;40m \E[0;40m \E[0;40m \E[0;40m \E[0;40m \E[0;40m \E[0;40m
\E[0;40m \E[0;40m \E[0;40m \E[0;40m \E[0;40m \E[0;40m \E[0;40m
\E[0;40m \E[0;40m \E[0;40m \E[0;40m \E[0;40m \E[0;40m \E[0;40m

So the idea is that, when the user paints a different colored pixel, one of the escape codes on the canvas have to change.

So how can I use sed to go to a certain line, and move to a certain column to replace one of the black escape codes like for example, replace with a blue escape code.

Here is the desired output. I want to save the blue escape code on the 3rd line of the canvas, On the 5th column of escape codes. Like so:

Code:
\E[0;40m \E[0;40m \E[0;40m \E[0;40m \E[0;40m \E[0;40m \E[0;40m
\E[0;40m \E[0;40m \E[0;40m \E[0;40m \E[0;40m \E[0;40m \E[0;40m
\E[0;40m \E[0;40m \E[0;40m \E[0;40m \E[0;45m \E[0;40m \E[0;40m
\E[0;40m \E[0;40m \E[0;40m \E[0;40m \E[0;40m \E[0;40m \E[0;40m
\E[0;40m \E[0;40m \E[0;40m \E[0;40m \E[0;40m \E[0;40m \E[0;40m
\E[0;40m \E[0;40m \E[0;40m \E[0;40m \E[0;40m \E[0;40m \E[0;40m
\E[0;40m \E[0;40m \E[0;40m \E[0;40m \E[0;40m \E[0;40m \E[0;40m

# 19  
Old 09-25-2011
The sed statement itself is correct. It just needs an input file:
Code:
sed "${row} s/./${newchar}/${col}" infile > test.txt

and the input file would have to contain the rows and column values..

Last edited by Scrutinizer; 09-25-2011 at 06:17 PM..
# 20  
Old 09-25-2011
Something like this?
Code:
awk -v row=3 -v col=5 -v val='\\E[0;45m' '{if(NR==row){$col=val}}1' input_file > new_file

--ahamed
# 21  
Old 09-25-2011
ahamed101, I don't know why your codes not working. Seems legit though.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

sed Or Grep Problem OR Terminal Problem?

I don't know if you guys get this problem sometimes at Terminal but I had been having this problem since yesterday :( Maybe I overdid the Terminal. Even the codes that used to work doesn't work anymore. Here is what 's happening: * I wanted to remove lines containing digits so I used this... (25 Replies)
Discussion started by: Nexeu
25 Replies

2. UNIX for Dummies Questions & Answers

sed problem

Hi Folks, I want to replace these numbers with words as the following: $echo 1 11 223 I want to replace each number with it name (e.g. "1" replaced with "one", etc.) just to determine how sed works in such case. Thanks in advance:). Leo (8 Replies)
Discussion started by: leo_ultra_leo
8 Replies

3. Shell Programming and Scripting

sed problem

Hi i am stuck with a very silly problem :mad: below is my code echo 201010_1212_121.xml i need to replace xml with csv so i did echo 201010_1212_121.xml | sed 's/.*\.xml/.*\.csv/' echo 201010_1212_121.xml | sed 's/*.xml/*.csv/' echo 201010_1212_121.xml |... (4 Replies)
Discussion started by: aishsimplesweet
4 Replies

4. Programming

sed problem

Hi all In input file I have records like this: 0,1,0,87,0,0,"6,87","170,03",0,"43,5",0,0,0,0,"6,87","126,53"and in output file I need that these records transforms in : 0 1 0 87 0 0 6,87 170,03 0 43,5 0 0 0 0 6,87 126,53 Could you help me in this case? Please (3 Replies)
Discussion started by: shizik
3 Replies

5. Shell Programming and Scripting

SED - Problem

I have a file with a lot of numbers in it and I need to clean it up and make it look nice and proper. I found this little gem of a one-liner and basically understand what it is doing but I would like to further understand what each part of the command is doing. Being a newb, I am just trying to... (2 Replies)
Discussion started by: genedc1
2 Replies

6. Shell Programming and Scripting

Sed Problem

I have a file which contain many lines see below. "/var/www/abc>" I want to remove Both of these values "" and > (5 Replies)
Discussion started by: aliahsan81
5 Replies

7. Shell Programming and Scripting

Problem in sed.

Hi All! I am trying to use shell variables in a sed statement, but facing an error.I used the double quotes instead if single quotes in the sed statement. # sed -i -e "s/password/$decoded/g;" $CATALINA_HOME/conf/server.xml sed: -e expression #1, char 11: unterminated `s' command # ... (5 Replies)
Discussion started by: nua7
5 Replies

8. Shell Programming and Scripting

Problem with SED

Hi, I have to use SED to remove the prefix "219-" from a text file containing phone numbers and I have to remove the ":" as well. I write the following code but it does not seem to work. Can someone help me please? mohit@mohit-desktop:~$ sed -n s/219-/" "/p corp_phones_bak > noprefix1... (2 Replies)
Discussion started by: mojoman
2 Replies

9. UNIX for Dummies Questions & Answers

Problem with sed

Hi , echo "07/05/2008" | sed 's/\(..\)\/\(..\)\/\(..\)/\3\2\1/' Output :: 20050708 Expected output is 20080507 Iam not getting the bug in this. Thanks for the help -- penchal (4 Replies)
Discussion started by: penchal_boddu
4 Replies

10. UNIX for Dummies Questions & Answers

Sed Problem

I AM TRYING TO APPEND THE HOSTNAME OF A UNIX SERVER I WORK WITH SO I COULD DO A LOADING INTO A DATABASE. THE COMMAND I AM USING IS df -k | sed 's/^/dataserver /' What I intend to do is append the hostname dynamically by using the hostname command instead of having to manually enter... (1 Reply)
Discussion started by: Chelsea
1 Replies
Login or Register to Ask a Question