Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6000305
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T00:40:28+00:00 2026-05-23T00:40:28+00:00

I have a file something like: # ID 1 blah blah blah blah $

  • 0

I have a file something like:

# ID 1
blah blah
blah blah
$ description 1
blah blah
# ID 2
blah
$ description 2
blah blah
blah blah

How can I use a sed command to delete all lines between the # and $ line? So the result will become:

# ID 1
$ description 1
blah blah
# ID 2
$ description 2
blah blah
blah blah

Can you please kindly give an explanation as well?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-23T00:40:29+00:00Added an answer on May 23, 2026 at 12:40 am

    Use this sed command to achieve that:

    sed '/^#/,/^\$/{/^#/!{/^\$/!d}}' file.txt
    

    Mac users (to prevent extra characters at the end of d command error) need to add semicolons before the closing brackets

    sed '/^#/,/^\$/{/^#/!{/^\$/!d;};}' file.txt
    

    OUTPUT

    # ID 1
    $ description 1
    blah blah
    # ID 2
    $ description 2
    blah blah
    blah blah
    

    Explanation:

    • /^#/,/^\$/ will match all the text between lines starting with # to lines starting with $. ^ is used for start of line character. $ is a special character so needs to be escaped.
    • /^#/! means do following if start of line is not #
    • /^$/! means do following if start of line is not $
    • d means delete

    So overall it is first matching all the lines from ^# to ^\$ then from those matched lines finding lines that don’t match ^# and don’t match ^\$ and deleting them using d.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a class file something like myclass.py in project/myapp/myclass.py how can I use
I have text file with something like first line line nr 2 line three
This is a longshot but I have a file with something like this: document
A really simple shell script question. I have a file with something like this:
I have a file that looks something like this def foo bar {{ //
I have a file that looks something like this: ABC DEF GHI I have
I have a text file which contains something like this: Hello, my name is
--edited for clarity (hopefully) I have an XML file that looks something like this:
I have the file data.txt with two columns and N rows, something like this:
I have a PHP file which will return something like <div id=title>Add Us On

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.