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

The Archive Base Latest Questions

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

I have a template file I want to copy and then edit from a

  • 0

I have a template file I want to copy and then edit from a script, inserting content at specific template points. For example, my template file might be something like,

...
rm -rf SomeDirectory
make install
#{INSERT-CONTENT-HERE}
do-something-else
...

In another script, I want to add content at “#{INSERT-CONTENT-HERE}” within a loop, i.e.

for i in c; do
  # Write content to the template file copy at the correct point.
done

I think sed is the right tool, but I’m not familiar enough to know the syntax, and the man page isn’t helping.

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

    You can copy the output of all the commands into a temporary file and then copy the contents of that entire file into the template file:

    TEMPFILE=`mktemp` && (
      for i in c
        echo "SomeTextBasedOn $i" >> $TEMPFILE
      done
      sed -i '/{INSERT-CONTENT-HERE}/r '$TEMPFILE targetfile
      rm $TEMPFILE
    )
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have this code which will include template.php file from inside each of these
At the moment, I have a base HTML template file. When ever I want
I have: $page_file_temp = $_SERVER[PHP_SELF]; which will output: /templates/somename/index.php I want to extract from
I have a template file in a folder c:\template_folder. At runtime, I will create
I have a template file( template.txt ): Hello, $x Hello, $y I have a
Absolute beginner question: I have a template file index.html that looks like this: ...
I have an XML Template file. This file contains a header and some predefined
I have a file template.txt which contains the following: Hello ${something} I would like
I have javascript code embedded inside a html template file. When I load this
I have a template in joomla without index.php I only have index.html, css file,

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.