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

  • Home
  • SEARCH
  • 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 6915719
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T09:30:37+00:00 2026-05-27T09:30:37+00:00

Example: echo one two three | sed ‘s/ /\n/g’ | sed ‘s/^/:/g’ output: :one

  • 0

Example:

echo one two three | sed 's/ /\n/g' | sed 's/^/:/g'

output:

:one
:two
:three

Without piping:

echo one two three | sed 's/ /\n/g;s/^/:/g'

output:

:one
two
three

seems like first pattern isn’t expanded before executing second one, but I really don’t know much about sed

How can I use first example without piping twice?

PS Pattern used in examples is informative

  • 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-27T09:30:38+00:00Added an answer on May 27, 2026 at 9:30 am

    The main problem here is that sed decides on what constitutes a line (a pattern that it works on) before executing any commands. That is, if you have only one pattern (one two three), it won’t get reinterpreted as multiple lines after execution of s/ /\n/g. If would be still a single pattern, although that would be the one that contains newlines inside it.

    The simplest workaround to make sed reinterpret patterns along the newly inserted newlines is just running sed twice, as you did.

    Another workaround would be adding something like m option (multi-line buffer) to s command:

    $ echo one two three | sed 's/ /\n/g;s/^/:/mg'
    :one
    :two
    :three
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want to capture output from two concurrent programs (tails on logfiles) into one
With this code using DomDocument: <?php $html = '<pre>one</pre><pre>two</pre><pre>three</pre><pre>four</pre>'; $doc = new DomDocument(); $doc->loadHTML($html);
As an example consider the following bash script. There are two loops, the first
My intention is to output log of recursive wget in one line, 'status bar'-like.
There's two different syntaxes in the example below. One works and the other does
I have a command, for example: echo "word1 word2" . I want to put
I'm looking for a elaborate list comparing different operations in PHP. For example: echo
Perhaps easiest to explain with an example: $ echo '\&|' \&| $ echo '\&|'
For example: me$ FOO=BAR * BAR me$ echo $FOO BAR file1 file2 file3 file4
Consider this simple example (which displays in red): echo -e \033[31mHello World\033[0m It displays

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.