Linux - Software This forum is for Software issues.
Having a problem installing a new program? Want to know which application is best for the job? Post your question in this forum. |
Notices |
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
Are you new to LinuxQuestions.org? Visit the following links:
Site Howto |
Site FAQ |
Sitemap |
Register Now
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
Get a virtual cloud desktop with the Linux distro that you want in less than five minutes with Shells! With over 10 pre-installed distros to choose from, the worry-free installation life is here! Whether you are a digital nomad or just looking for flexibility, Shells can put your Linux machine on the device that you want to use.
Exclusive for LQ members, get up to 45% off per month. Click here for more info.
|
|
|
01-27-2009, 11:51 AM
|
#16
|
Member
Registered: Dec 2006
Posts: 381
Original Poster
Rep:
|
but again you really don't seem to understand i can't do this! some people can some can't
also i've looked at explode and can't figure it out nor do i think it's what i need :\
|
|
|
01-27-2009, 11:56 AM
|
#17
|
LQ Guru
Registered: Jul 2003
Location: Birmingham, Alabama
Distribution: SuSE, RedHat, Slack,CentOS
Posts: 27,335
|
Quote:
Originally Posted by steve51184
but again you really don't seem to understand i can't do this! some people can some can't
also i've looked at explode and can't figure it out nor do i think it's what i need :\
|
No, I do understand, but you're missing several points. Let me be more clear:
1. PHP is one option. I only mentioned it because YOU started the thread, by bringing up PHP. I gave you the link to the resource and example on how to do it via PHP.
2. BASH script is the second option. I gave you the commands to use (sed and awk), which have ample documentation, both through man pages and thousands of examples that can be easily found through Google.
3. If you can't do it, why do you not think the solutions given to you are what you need?
4. If you can't do it HIRE SOMEONE WHO CAN OR LET SOMEONE ELSE DO IT.
Google for "linux sed search replace". You will find lots of information with sample scripts that you can use. If that's too hard, again....HIRE SOMEONE.
|
|
|
01-27-2009, 12:27 PM
|
#18
|
Member
Registered: Dec 2006
Posts: 381
Original Poster
Rep:
|
getting to work now will post what i have soon
|
|
|
01-27-2009, 12:41 PM
|
#19
|
Member
Registered: Dec 2006
Posts: 381
Original Poster
Rep:
|
right now i'm getting somewhere but i'm having trouble so i'll post what i have:
this strips the "RewriteCond %{REMOTE_ADDR}" line from my file and writes it to a new file
Code:
grep -i "RewriteCond %{REMOTE_ADDR}" /home2/test.txt > /home2/list.txt
this removes the "RewriteCond %{REMOTE_ADDR} (" part
Code:
sed -i 's/RewriteCond %{REMOTE_ADDR} (//g' /home2/list.txt
now i'm trying to use sed and the same command above to remove all the \ but i get this error:
Quote:
# sed -i 's/\//g' /home2/list.txt
sed: -e expression #1, char 6: unterminated `s' command
|
and i'm also trying to remove )$ at the end of the file but it's not removing it or giving me an error here's the command:
Code:
sed -i 's/)$//g' /home2/list.txt
|
|
|
01-27-2009, 01:16 PM
|
#20
|
LQ Guru
Registered: Jul 2003
Location: Birmingham, Alabama
Distribution: SuSE, RedHat, Slack,CentOS
Posts: 27,335
|
Quote:
Originally Posted by steve51184
right now i'm getting somewhere but i'm having trouble so i'll post what i have:
this strips the "RewriteCond %{REMOTE_ADDR}" line from my file and writes it to a new file
Code:
grep -i "RewriteCond %{REMOTE_ADDR}" /home2/test.txt > /home2/list.txt
this removes the "RewriteCond %{REMOTE_ADDR} (" part
Code:
sed -i 's/RewriteCond %{REMOTE_ADDR} (//g' /home2/list.txt
now i'm trying to use sed and the same command above to remove all the \ but i get this error:
and i'm also trying to remove )$ at the end of the file but it's not removing it or giving me an error here's the command:
Code:
sed -i 's/)$//g' /home2/list.txt
|
This is where you should have been, 4 days ago.
Quote:
sed -i 's/\//g' /home2/list.txt
|
To get 'special characters' (like the \, /, |, etc.), to go through, try escaping them with a backslash, like:
Code:
sed 's/\\//g' /home2/list.txt
You don't need the "-i" for this..that means case-insensitive, and since you're only doing a special character, you don't need it. Putting a leading backslash will make sed treat the next character as JUST a character, rather than a 'control' character, which does something special.
This should also work for this:
Code:
sed 's/\)\$//g' /home2/list.txt
You can also (if you want to), string your sed's together on one line, like this:
Code:
cat <filename> | sed <whatever> | sed <whatever> | sed <whatever> > output.file
|
|
|
01-27-2009, 01:30 PM
|
#21
|
Member
Registered: Dec 2006
Posts: 381
Original Poster
Rep:
|
if i don't put a -i in this command it just outputs on the screen and not to a file
Code:
sed 's/\\//g' /home2/list.txt
also i can't get the second command to work:
Quote:
# sed 's/\)\$//g' /home2/list.txt
sed: -e expression #1, char 9: Unmatched ) or \)
|
|
|
|
01-27-2009, 01:52 PM
|
#22
|
Member
Registered: Dec 2006
Posts: 381
Original Poster
Rep:
|
right i've almost done it with this so far:
Code:
grep -i "RewriteCond %{REMOTE_ADDR}" /home2/test.txt > /home2/list.txt
sed -i 's/RewriteCond %{REMOTE_ADDR} (//g' /home2/list.txt
sed -i 's/\\//g' /home2/list.txt
tr -d \\n < list.txt | tr \| \\n | sort > list2.txt && mv list2.txt list.txt
the only thing i need to do is strip the )$ bit
|
|
|
01-27-2009, 02:04 PM
|
#23
|
Member
Registered: Dec 2006
Posts: 381
Original Poster
Rep:
|
nm i've done it with the following:
Code:
grep -i "RewriteCond %{REMOTE_ADDR}" /home2/test.txt > /home2/list.txt
sed -i 's/RewriteCond %{REMOTE_ADDR} (//g' /home2/list.txt
sed -i 's/\\//g' /home2/list.txt
sed -i 's/)//g' /home2/list.txt
sed -i 's/\$//g' /home2/list.txt
tr -d \\n < list.txt | tr \| \\n | sort > list2.txt && mv list2.txt list.txt
thank you very much for helping/forcing me to do this i really had fun doing it and will think/look harder next time
|
|
|
01-27-2009, 02:06 PM
|
#24
|
LQ Guru
Registered: Jul 2003
Location: Birmingham, Alabama
Distribution: SuSE, RedHat, Slack,CentOS
Posts: 27,335
|
Quote:
Originally Posted by steve51184
also i can't get the second command to work:
# sed 's/\)\$//g' /home2/list.txt
sed: -e expression #1, char 9: Unmatched ) or \)
|
Hmm...not at a machine where I can test this, but it's probably got to do something with the backslashes. Sed can be picky...try:
Code:
sed 's/\\)\$//g' /home2/list.txt
and see if that gets it.
|
|
|
01-27-2009, 02:10 PM
|
#25
|
Member
Registered: Dec 2006
Posts: 381
Original Poster
Rep:
|
Quote:
Originally Posted by TB0ne
Hmm...not at a machine where I can test this, but it's probably got to do something with the backslashes. Sed can be picky...try:
Code:
sed 's/\\)\$//g' /home2/list.txt
and see if that gets it.
|
read my last post:
http://www.linuxquestions.org/questi...54#post3423054
|
|
|
01-27-2009, 03:18 PM
|
#26
|
Member
Registered: Dec 2006
Posts: 381
Original Poster
Rep:
|
seems like i forgot i was wanting this to be a html page so i edited it to display properly:
Code:
grep -i "RewriteCond %{REMOTE_ADDR}" /home2/.htaccess > /home2/test.html
sed -i 's/RewriteCond %{REMOTE_ADDR} (//g' /home2/test.html
sed -i 's/\\//g' /home2/test.html
sed -i 's/)//g' /home2/test.html
sed -i 's/\$//g' /home2/test.html
sed -i 's/|/<br>/g' /home2/test.html
but i want to include other formatting within the file so is there a way with grep/sed/awk to include a line of code at the start/end of a file?
i've searched google but i'm not getting anything other then weird links
|
|
|
01-27-2009, 03:25 PM
|
#27
|
LQ Guru
Registered: Jul 2003
Location: Birmingham, Alabama
Distribution: SuSE, RedHat, Slack,CentOS
Posts: 27,335
|
Quote:
Originally Posted by steve51184
seems like i forgot i was wanting this to be a html page so i edited it to display properly:
Code:
grep -i "RewriteCond %{REMOTE_ADDR}" /home2/.htaccess > /home2/test.html
sed -i 's/RewriteCond %{REMOTE_ADDR} (//g' /home2/test.html
sed -i 's/\\//g' /home2/test.html
sed -i 's/)//g' /home2/test.html
sed -i 's/\$//g' /home2/test.html
sed -i 's/|/<br>/g' /home2/test.html
but i want to include other formatting within the file so is there a way with grep/sed/awk to include a line of code at the start/end of a file?
i've searched google but i'm not getting anything other then weird links
|
You can do it with a bit of simple 'cheating'. For example, the '>' character. One of them will write to a file (overwriting what ever is there), but if you put two, you will append text to it. So you could do:
Code:
echo "Beginning line of my report..." > output.file
<your shell script here> >> output.file
echo "Ending line of my report..." >> output.file
First line puts text in the new output file. Second line is the shell script you just wrote, which will put it's output after the first line you just wrote. Third line puts the 'ending' on.
There's lots of different ways to do it, that's VERY quick, and VERY dirty.
You must have been posting yours, when I was posting mine.
|
|
|
01-27-2009, 03:29 PM
|
#28
|
Member
Registered: Dec 2006
Posts: 381
Original Poster
Rep:
|
wow that's an amazing trick and i had not idea about the double > thank you very much
|
|
|
All times are GMT -5. The time now is 07:28 AM.
|
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.
|
Latest Threads
LQ News
|
|