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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T14:14:28+00:00 2026-05-24T14:14:28+00:00

Man I hate eval … I’m stuck with this ksh, and it has to

  • 0

Man I hate eval…

I’m stuck with this ksh, and it has to be this way.

There’s this function I need, which will receive a variable name and a value. Will do some things to the contents of that variable and the value and then would have to update the variable that was received. Sort of:

REPORT="a text where TADA is wrong.."

setOutputReport REPORT "this"

echo $REPORT
a text where this is wrong..

Where the function would be something like

function setOutputReport {
    eval local currentReport=\$$1
    local reportVar=$1
    local varValue=$2

    newReport=$(echo "$currentReport"|sed -e 's/TADA/$varValue')

    # here be dragons
    eval "$reportVar=\"$newReport\""
}

I had this headache before, never manage to get this eval right at first. Important here, the REPORT var may contain multiple lines (\n‘s). This might be important as one of the attempts managed to correctly replace the contents of the variable with the fist line only :/

thanks.

  • 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-24T14:14:29+00:00Added an answer on May 24, 2026 at 2:14 pm

    One risk, not with eval but with the “varValue” as the replacement in the sed command: if varValue contains a slash, the sed command will break

    local varValue=$(printf "%s\n" "$2" | sed 's:/:\\/:g')
    local newReport=$(echo "$currentReport"|sed -e "s/TADA/$varValue/")
    

    If your printf has the %q specifier, that will add a layer of security — %q escapes things like quotes, backticks and dollar signs, and also escaped chars like newline and tab:

    eval "$(printf "%s=%q" "$reportVar" "$newReport")"
    

    Here’s an example of what %q does (this is bash, I hope your version of ksh corresponds):

    $ y='a `string` "with $quotes"
    with multiple
    lines'
    $ printf "%s=%q\n" x "$y"
    x=$'a `string` "with $quotes"\nand multiple\nlines'
    $ eval "$(printf "%s=%q" x "$y")"
    $ echo "$x"
    a `string` "with $quotes"
    and multiple
    lines
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

The man page of epoll_ctl() says about EPOLLPRI : There is urgent data available
From the man page on git-merge, there are a number of merge strategies you
From the gemfile man page , I learned there are two ways to import
man gitglossary contains this definition of an evil merge : An evil merge is
// base function function Man(name) { // private property var lover = simron; //
When i see man sqrt on Linux, I see 3 prototypes of the function
Confusion 1 : The man realloc says that the object will be moved if
Man, I just had this project given to me - expand on this they
Man this JSON thing is chewing away at my day. Is it suppose to
From the recv(2) man page: MSG_WAITALL This flag requests that the operation block until

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.