Coder Social home page Coder Social logo

Comments (2)

kusalananda avatar kusalananda commented on June 3, 2024

No, not really. I would want to be able to use the function as a drop-in replacement for printf to do error output. This means that it must be able to take a printf format string followed by a number of arguments.

In my current code, which I haven't pushed just yet, this looks like

# We mimic printf here, disable shellcheck warnings.
# See https://unix.stackexchange.com/questions/438694
# shellcheck disable=SC2059,SC2145
printf "$UTIL: $@" >&2

The two disabled warnings are:

  • SC2059: Don't use variables in the printf format string. Use printf "..%s.." "$foo".
  • SC2145: Argument mixes string and array. Use * or separate argument.

I asked a question on U&L about this (see link in above code) and StΓ©phane Chazelas answered it and gave the above as an alternative solution, together with caveats for the $UTIL string (will be set to shell here, so no issues there).

from shell-toolbox.

0mp avatar 0mp commented on June 3, 2024

Alright, it does make sense then. Thank you for your explanation πŸ‘

from shell-toolbox.

Related Issues (4)

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.