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 6948593
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T13:50:36+00:00 2026-05-27T13:50:36+00:00

There has been an attempt at this question already, Detecting and concatenating a multi-line

  • 0

There has been an attempt at this question already, Detecting and concatenating a multi-line structure using sed, but none of the answers worked for my specific case.

I have a program written in c which has two kinds of multi-lined structures. I need to figure out how to use the unix utility sed to compress these structure definitions to a single line and then make two copies, so there are three copies of the structure definition in total.

Here is my c program example:

#include <stdio.h>
#include <stdlib.h>

struct node {
    int val;
    struct node *next;
};

typedef struct {
    int numer;
    int denom;
} Rational;

int main()
{
    struct node head;
    Rational half, *newf = malloc(sizeof(Rational));

    head = (struct node){ 5, NULL };
    half = (Rational){ 1, 2 };
    *newf = (Rational){ 2, 3 };

    return 0;
}

I know that the sed command will look something to the extent of sed '/ *struct .*/N;' test.c to find the structure and then a branch statement to append the rest of the lines of the structure definition to the single line.

  • 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-27T13:50:36+00:00Added an answer on May 27, 2026 at 1:50 pm

    Here’s how to do it. Have a file which calls sed -f and then create a file with a list of sed commands. The file goes as follows.

    /typedef struct/b a
    /^struct.*{/!b;:a;N
    /}/!b a;p
    s/\n//g
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Has there been any attempt and creating a formalized method for organizing CSS code?
I'am aware there has been a generic question about a best IDE in C++
I know that variations on this question have been asked, but I've tried all
There are plenty of performance questions on this site already, but it occurs to
Update: I can't delete this question, because the answer has been upvoted, yet it
There has been some talk of Website performance monitoring tools and services on stackoverflow,
There has been a flurry of updates released to Microsoft's Silverlight over the past
There has been a lot of sentiment to include a nameof operator in C#.
There has been a lot of talk around iPad-Apps / Approval / Store-related Questions.
Recently there has been quite some hype around all the different mocking frameworks in

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.