GithubHelp home page GithubHelp logo

Comments (4)

koalaman avatar koalaman commented on July 22, 2024

Interestingly, ? is valid when doing function foo? { ...; } but not with foo?() { ...; }.

from shellcheck.

worr avatar worr commented on July 22, 2024

Your first example won't declare a function. You need the () after the name if you omit function when declaring the function.

Also, contrary to your examples, I've been doing:

?() {
    /bin/true
}

...() {
    /bin/true
}

Both are valid, however they totally break the parser.

from shellcheck.

koalaman avatar koalaman commented on July 22, 2024

function is not omitted in the first example. It's right there. Your examples work for me in a script, but not in an interactive shell:

vidarh@vidarh 15:51 ~ $ cat foo

echo $BASH_VERSION
?() {
  echo foo
}
?

vidarh@vidarh 15:51 ~ $ bash foo
4.2.25(1)-release
foo
vidarh@vidarh 15:51 ~ $ source foo
4.2.25(1)-release
bash: ?(): command not found
foo
bash: foo: line 6: syntax error near unexpected token `}'
bash: foo: line 6: `}'
vidarh@vidarh 15:51 ~ $ 

from shellcheck.

koalaman avatar koalaman commented on July 22, 2024

83c3dd3 accepts periods and question marks in function names. I'll leave 'function foo' vs 'foo()' in interactive mode for another time.

from shellcheck.

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.