Coder Social home page Coder Social logo

Comments (15)

No-one-important avatar No-one-important commented on July 22, 2024

would
script.Env("variable", "value").Exec("command")
be a suitable solution

from script.

bitfield avatar bitfield commented on July 22, 2024

I'm not seeing where this adds much value over, for example:

script.Exec("sh -c 'export MSG=hello; echo $MSG'").Stdout()

from script.

No-one-important avatar No-one-important commented on July 22, 2024

on windows that syntax is not possible

from script.

bitfield avatar bitfield commented on July 22, 2024

That's a fair point, but what about os.Setenv, for example?

from script.

No-one-important avatar No-one-important commented on July 22, 2024

It works but I think it would cleaner to have it inline and builtin to the module.

from script.

bitfield avatar bitfield commented on July 22, 2024

Useful abstractions, as John Ousterhout says, should be deep: they should conceal lots of functionality behind a simple API. Is there any way we could do more than simply call os.Setenv? Some example programs that need to set their environment would be useful. What about reading an envfile, for example?

from script.

josegonzalez avatar josegonzalez commented on July 22, 2024

I think it might be nice to not use os.Setenv() and instead only set them for a Pipeline - maybe something like a wrapper around script.Exec("sh -c 'export KEY=value; true'"), but for potentially multiple key/value pairs? In this way, we scope environment variables to just the pipeline rather than the entire golang process that is invoking/utilizing the pipeline.

Note that the wrapper would probably need to properly escape the environment variables, so it wouldn't be as simple as a fmt.Sprintf() call. Maybe thats enough deepness for it to be implemented?

from script.

bitfield avatar bitfield commented on July 22, 2024

That sounds good, @josegonzalez—can you write a short piece of example code to show what you mean?

from script.

josegonzalez avatar josegonzalez commented on July 22, 2024

Maybe something like the following:

environ := map[string]string{
  "HASURA_GRAPHQL_JWT_SECRET": "{\"type\": \"HS256\", \"key\": \"256BITKEYHERE$\"}"
}
contents, err := script.Env(env).Exec("env")

from script.

bitfield avatar bitfield commented on July 22, 2024

Okay, but this looks pretty similar to:

os.Setenv("HASURA_GRAPHQL_JWT_SECRET", `{"type": "HS256", "key": "256BITKEYHERE$"}`)
contents, err := script.Exec("env")

Can you describe what problem you think an Env method on the pipe would be solving here?

from script.

No-one-important avatar No-one-important commented on July 22, 2024

os.Setenv would be global to the entire script this would allow it be local to the pipe

from script.

bitfield avatar bitfield commented on July 22, 2024

Okay, but why is that important? Can you think of a situation where you'd want to set some environment variable for a command run by a pipe, but not for the program as a whole?

from script.

No-one-important avatar No-one-important commented on July 22, 2024

I'm not sure of the usecases but it just allows the same flexibility that the bash syntax allows but for all OSs

from script.

bitfield avatar bitfield commented on July 22, 2024

Well, if there are no use cases for something, that's just another way of saying we don't need it, isn't it? There are lots of feature ideas that aren't bad in themselves—they're great features! It's just that we don't need them, so we don't add them.

from script.

bitfield avatar bitfield commented on July 22, 2024

Closing pending real use cases.

from script.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.