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.
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.
|
|
11-19-2008, 12:10 PM
|
#1
|
Member
Registered: Aug 2006
Location: England Somewhere
Distribution: Mandriva, PCLinuxOS, Karoshi, Suse, Redhat, Ubuntu
Posts: 518
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 12:28 PM.
|
|
|
11-19-2008, 12:37 PM
|
#2
|
Member
Registered: Aug 2006
Location: Saint Paul, MN, USA
Distribution: {Free,Open}BSD, CentOS, Debian, Fedora, Solaris, SuSE
Posts: 735
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, 12:43 PM
|
#3
|
Senior Member
Registered: Aug 2004
Location: England
Distribution: Ubuntu
Posts: 1,039
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 12:50 PM.
|
|
|
11-19-2008, 02:26 PM
|
#4
|
Member
Registered: Aug 2006
Location: England Somewhere
Distribution: Mandriva, PCLinuxOS, Karoshi, Suse, Redhat, Ubuntu
Posts: 518
Original Poster
Rep:
|
Sweet thanks guys both ideas work great. And great website not seen that one before.. cheers
MJ
|
|
|
10-23-2013, 02:48 PM
|
#5
|
Member
Registered: Sep 2006
Location: Providence, Moka Mauritius
Distribution: Slackware, Lubuntu
Posts: 353
Rep:
|
so one liner
sed -e " /^http/s|$|\'| " -e "s/^http/\'http/"
sed -e " /^http/s|$|\'| ; s/^http/\'http/"
err to one liner ( better ) without two -e please
from
http://foo.foo.com
to
'http://foo.foo.com'
Last edited by jheengut; 10-23-2013 at 02:53 PM.
Reason: searched o+n
|
|
|
All times are GMT -5. The time now is 07:21 PM.
|
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
|
|