Stop Microsoft
Operating Systems => Linux and UNIX => Topic started by: LorKorub on 3 October 2002, 14:51
-
I have about 40 or so *.php files that I fucked up with table dimensions on. I need to delete a single phrase (height=200px) from all of the files. Is there a way to use grep or awk to do this?
-
this will find all the *.php files in the current directory and strip out that phrase with sed:
for i in `find ./ -name '*.php'`; do sed 's/height=200px//g' $i > tmp; mv tmp $i; done
[ October 03, 2002: Message edited by: flap ]
-
Thanks for the help, but that didn't work.
My command prompt just turned into a '>'
-
did you definitely paste/type it correctly? and you are using bash i presume?
-
so in general if i wanted to change a recurring line (two or three ocurrences in each file) to a different line, i should use find and pipe it to sed? or would i use a different program for replacing.
I will read the manpages for sed and find when i get home, but if there's another utility needed for this, what is it please?
thanks.
Actually i was going to ask this exact question last week.
LorKorub, i suggest reading the manpages since a big long command string may often not be exactly what you require,and anyway there are more than one way to do most things and one will suit your style better than the others.
edit - i just checked flap's post and noticed there is no pipe, so what is going on here, please?
sorry to be so dumb and sorry to hijack somebody's thread but i am trying to do the same thing...
[ October 03, 2002: Message edited by: Calum ]
-
I am using Korn Shell. And I did a reverse-video on it right from the board.
I'll try it in bash...
-
Bitchin'....
Thanks, dude....
How exactly did all of that work?
EDIT:
Calum....I've been on the man pages and Google all night trying to find a simple way to do this. I came up with the hypothesis that maybe you could use grep to find the line, pipe it to vi and use the Replace fucntion.....
...didn't work...LOL
[ October 03, 2002: Message edited by: LorKorub / BOB ]
-
hey i hope i didn't sound condescending there, i haven't read the man pages, but these things you have both mentioned i think will have given me enough reading to sort out my own concern, so thanks to both of you! :D
-
for i in `find ./ -name '*.php'`;
...for each line returned by the command find ./ -name '*.php'...
do sed 's/height=200px//g' $i > tmp;
...do the following: use sed to find every occurrence of the string "height=200px" in the filename denoted by 'i' and replace it with a blank string. the > operator then redirects the output of this command (which would otherwise just be printed to stdout i.e. the screen) to the file 'tmp'
mv tmp $i; done
...overwrite the original unmodified file with the tmp file
In windows, incidentally, the procedure is:
1. Open file in notepad
2. Use the 'Replace' facility to remove all unwanted strings
3. Save file
Repeat 40 times
-
and to specify a value to replace the original value? (for instance, to replace the line with "height=400px")
-
Thanks again....you just saved me a lot of work!
I'll be sure to put this all in a file somehwere. It is very valuable.
-
quote:
and to specify a value to replace the original value? (for instance, to replace the line with "height=400px")
sed 's/height=200px/height=400px/g'
-
thank you very much for your thoroughness. (http://smile.gif)
-
sed tutorial: http://www.grymoire.com/Unix/Sed.html (http://www.grymoire.com/Unix/Sed.html)
worth looking at similar tutorials for awk, grep, bash scripting etc