The UNIX and Linux Forums  

Go Back   The UNIX and Linux Forums > Top Forums > Shell Programming and Scripting
.
google unix.com



Shell Programming and Scripting Post questions about KSH, CSH, SH, BASH, PERL, PHP, SED, AWK and OTHER shell scripts and shell scripting languages here.

More UNIX and Linux Forum Topics You Might Find Helpful
Thread Thread Starter Forum Replies Last Post
deleting a line but keeping the same file laiko UNIX for Dummies Questions & Answers 2 05-13-2008 03:08 PM
Deleting end of line $ character in file bwrynz1 UNIX for Advanced & Expert Users 3 01-08-2008 01:17 PM
Deleting Junks at the end of each line in a file dave_nithis UNIX Desktop for Dummies Questions & Answers 5 10-05-2007 03:51 AM
Deleting all content in a file from command line kingdbag UNIX for Dummies Questions & Answers 2 07-20-2006 08:00 PM
Deleting end line spaces for along file osymad Shell Programming and Scripting 3 02-23-2005 01:56 PM

Reply
English Japanese Spanish French German Portuguese Italian Dutch Swedish Russian Norwegian Hungarian Hebrew Danish Bulgarian Greek Powered by Powered by Google
 
LinkBack Thread Tools Search this Thread Rate Thread Display Modes
  #1 (permalink)  
Old 08-20-2009
cola's Avatar
cola cola is offline
Registered User
  
 

Join Date: Aug 2009
Location: Dhaka,Bangladesh
Posts: 34
Deleting a line from a file with sed and awk?

cat file.txt

Code:
fvnuiehuewf
ruevhxncvkjrh
zxjvurhfuwe
jkhvBEGINvfnvf
ijrgioe

Trying to delete a line that has the pattern "BEGIN"

cat sedtest

Code:
filename=file.txt
pattern=BEGIN

sed "/^$pattern/d" "$filename"

  #2 (permalink)  
Old 08-20-2009
danmero danmero is online now Forum Advisor  
  
 

Join Date: Nov 2007
Location: 45.48-73.63
Posts: 1,448

Code:
sed "/$pattern/d" file

  #3 (permalink)  
Old 08-20-2009
cola's Avatar
cola cola is offline
Registered User
  
 

Join Date: Aug 2009
Location: Dhaka,Bangladesh
Posts: 34
Quote:
Originally Posted by danmero View Post
Code:
sed "/$pattern/d" file
Thank you.
How can I save this output in a variable and print that result (from variable)?
  #4 (permalink)  
Old 08-20-2009
danmero danmero is online now Forum Advisor  
  
 

Join Date: Nov 2007
Location: 45.48-73.63
Posts: 1,448

Code:
# VAR=$(sed "/$pattern/d" file)
# echo $VAR
fvnuiehuewf ruevhxncvkjrh zxjvurhfuwe ijrgioe
# echo "$VAR"
fvnuiehuewf
ruevhxncvkjrh
zxjvurhfuwe
ijrgioe

  #5 (permalink)  
Old 08-21-2009
cola's Avatar
cola cola is offline
Registered User
  
 

Join Date: Aug 2009
Location: Dhaka,Bangladesh
Posts: 34
Quote:
Originally Posted by danmero View Post
Code:
# VAR=$(sed "/$pattern/d" file)
# echo $VAR
fvnuiehuewf ruevhxncvkjrh zxjvurhfuwe ijrgioe
# echo "$VAR"
fvnuiehuewf
ruevhxncvkjrh
zxjvurhfuwe
ijrgioe
How to print the result using sed and pipe "|" ?
  #6 (permalink)  
Old 08-21-2009
Leo Gutierrez Leo Gutierrez is offline
Registered User
  
 

Join Date: Aug 2009
Posts: 13

Code:
#!/usr/bin/bash
filename=file.txt
pattern=BEGIN
cat "$filename" | sed "/$pattern/d"

  #7 (permalink)  
Old 08-21-2009
cola's Avatar
cola cola is offline
Registered User
  
 

Join Date: Aug 2009
Location: Dhaka,Bangladesh
Posts: 34
Quote:
Originally Posted by Leo Gutierrez View Post
Code:
#!/usr/bin/bash
filename=file.txt
pattern=BEGIN
cat "$filename" | sed "/$pattern/d"
How to change the contents of that file?That means deleting the line with "BEGIN" pattern from the file?
Reply

Bookmarks

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes Rate This Thread
Rate 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

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On




All times are GMT -4. The time now is 06:23 AM.


Powered by: vBulletin, Copyright ©2000 - 2006, Jelsoft Enterprises Limited. Language Translations Powered by .
vBCredits v1.4 Copyright ©2007 - 2008, PixelFX Studios
The UNIX and Linux Forums Content Copyright ©1993-2009. All Rights Reserved.Ad Management by RedTyger

Content Relevant URLs by vBSEO 3.2.0