cancel
Showing results for 
Search instead for 
Did you mean: 
Trevor
Starfighter Starfighter
Starfighter
  • 162 Views

sed Tip - #5

Jump to solution

A file named "months" contains the following content:

January
February
March
April
May
June
August
September
November
December


sed  -i   '7i\July'  months
- This command will insert the month "July" on the 7th line
of the file,

Note:  The word "July" is actually added to the file, on the 7th line!

Question:  Any idea how to go about inserting "October" between
"September" and "November", without making reference to the
line number?

Note: This question is open to Chetan_Tiwary-level and below!

 

Trevor "Red Hat Evangelist" Chandler
1 Solution

Accepted Solutions
Chetan_Tiwary_
Community Manager
Community Manager
  • 143 Views

So, one can achieve the same objective by using this command as well :

sed -i '/September/a\October' months

Chetan_Tiwary__2-1739963189921.png

a is for append the text October after the matched text pattern September.

View solution in original post

4 Replies
Chetan_Tiwary_
Community Manager
Community Manager
  • 143 Views

@Trevor LOL there is a new level unlocked with my name :xD :

Chetan_Tiwary__0-1739962772492.png

 

Chetan_Tiwary__1-1739962797138.png

By using this command you can achieve the objecive :

sed -i '/November/i\October' months

this expression : /November/i\October : tells sed to search for the text November and insert before it  ( i\ ) the text October in the months file.

Chetan_Tiwary_
Community Manager
Community Manager
  • 144 Views

So, one can achieve the same objective by using this command as well :

sed -i '/September/a\October' months

Chetan_Tiwary__2-1739963189921.png

a is for append the text October after the matched text pattern September.

Trevor
Starfighter Starfighter
Starfighter
  • 117 Views

The highest Red Hat certification level is based on
Chetan_Tiwary_

RHCA (Red Hat Chetan Accolade)

 

 

Trevor "Red Hat Evangelist" Chandler
Chetan_Tiwary_
Community Manager
Community Manager
  • 70 Views

Chetan_Tiwary__0-1740069074351.jpeg

 

0 Kudos
Join the discussion
You must log in to join this conversation.