Linux - Newbie This Linux forum is for members that are new to Linux.
Just starting out and have a question?
If it is not in the man pages or the how-to's this is the place! |
| 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.
 |
GNU/Linux Basic Guide
This 255-page guide will provide you with the keys to understand the philosophy of free software, teach you how to use and handle it, and give you the tools required to move easily in the world of GNU/Linux. Many users and administrators will be taking their first steps with this GNU/Linux Basic guide and it will show you how to approach and solve the problems you encounter.
Click Here to receive this Complete Guide absolutely free. |
|
 |
11-19-2008, 11:10 AM
|
#1
|
|
Member
Registered: Aug 2006
Location: England Somewhere
Distribution: Mandriva, PCLinuxOS, Karoshi, Suse, Redhat, Ubuntu
Posts: 517
Rep:
|
Sed append text to end of line if line contains specific text? How can this be done?
Hi All,
I'm trying to get sed to add some text to the end of a line if that line contains a specific piece of text.
Quite simple i have a script...
echo blah
df -h
echo blah1
cd /usr/share
echo blah2
ls -al
echo blah1
And i want to use sed (i think is probably right for the job) to add text to the end of all the lines that are 'echo'
I've seen that you can :-
sed 's/$/text/' filename
But that appends to every single line i want to do something like
sed 's|echo*$|>> /var/log/output_to_log.txt|' filename
As you can see i want all the echo's to send out to a log, in the script i've already created but at the moment the echo's just send to stout, and i could run the script with filename 2>&1 /var/log/output_to_log.txt, but i'm trying to do it this other way.
Any ideas?
Cheers,
MJ
Last edited by helptonewbie; 11-19-2008 at 11:28 AM.
|
|
|
|
11-19-2008, 11:37 AM
|
#2
|
|
Member
Registered: Aug 2006
Location: Saint Paul, MN, USA
Distribution: {Free,Open}BSD, CentOS, Debian, Fedora, Solaris, SuSE
Posts: 714
Rep:
|
Hi.
This works for me:
Code:
#!/bin/bash -
# @(#) s1 Demonstrate append text to end of selected lines.
echo
echo "(Versions displayed with local utility \"version\")"
version >/dev/null 2>&1 && version "=o" $(_eat $0 $1) sed
set -o nounset
echo
echo " Results:"
cat <<EOF |
echo blah
df -h
echo blah1
cd /usr/share
echo blah2
ls -al
echo blah1
EOF
sed '/^echo/s|$| >> /var/log/output_to_log.txt|'
exit 0
Producing:
Code:
% ./s1
(Versions displayed with local utility "version")
Linux 2.6.11-x1
GNU bash 2.05b.0
GNU sed version 4.1.2
Results:
echo blah >> /var/log/output_to_log.txt
df -h
echo blah1 >> /var/log/output_to_log.txt
cd /usr/share
echo blah2 >> /var/log/output_to_log.txt
ls -al
echo blah1 >> /var/log/output_to_log.txt
The page http://www.grymoire.com/Unix/Sed.html is often mentioned as useful for learning sed ... cheers, makyo
|
|
|
|
11-19-2008, 11:43 AM
|
#3
|
|
Senior Member
Registered: Aug 2004
Location: England
Distribution: Ubuntu
Posts: 1,007
Rep:
|
Deleted as makyo's example:
sed -i '/echo/s|$| >> /var/log/output_to_log.txt|' filename
is more relevant and elegant.
Last edited by Disillusionist; 11-19-2008 at 11:50 AM.
|
|
|
|
11-19-2008, 01:26 PM
|
#4
|
|
Member
Registered: Aug 2006
Location: England Somewhere
Distribution: Mandriva, PCLinuxOS, Karoshi, Suse, Redhat, Ubuntu
Posts: 517
Original Poster
Rep:
|
Sweet thanks guys both ideas work great. And great website not seen that one before.. cheers
MJ
|
|
|
|
| Thread Tools |
Search this Thread |
|
|
|
Posting Rules
|
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
HTML code is Off
|
|
|
All times are GMT -5. The time now is 01: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
|
|