Cannot understand command substitution in Fish shell

后端 未结 2 1175
温柔的废话
温柔的废话 2021-01-05 08:11

In sh:

~$ `echo ls`
bin/  Desktop/

But in fish:

fish: Illegal command name “(echo ls)”
~% (echo ls)

(Note

相关标签:
2条回答
  • 2021-01-05 08:45

    Update

    This answer was written ten year ago in 2010. Recent versions of fish (I tested on 3.1.2) updated and set cmd ls; $cmd is valid now.

    How

    This because command substitutions belong to parameter expansions and are not allowed as commands.

    A similar example:

    in sh:

    tmpls=ls
    $tmpls
    

    But in fish:

    % set cmd ls; $cmd
    fish: Variables may not be used as commands.
    ...
    

    Why

    In short, it's good for verifiability

    This article explains details:

    Since it is allowed to use variables as commands in regular shells, it is impossible to reliably check the syntax of a script. For example, this snippet of bash/zsh code may or may not be legal, depending on your luck. Do you feel lucky?

        if true; then if [ $RANDOM -lt 1024 ]; then END=fi; else END=true; fi; $END
    

    Both bash and zsh try to determine if the command in the current buffer is finished when the user presses the return key, but because of issues like this, they will sometimes fail. Even worse, this piece of perfectly legal code is rejected by bash:

      FI=fi; foo() { if true; then true; $FI; }
    

    Fish avoids this kind of problem, since variables are not allowed as commands. Anything you can do with variables as commands can be done in a much cleaner way using either the eval command or by using functions.

    For the same reason, command substitutions are not allowed as commands.

    (Note: The cited example is not fair, since 'if' and 'fi' are not simple commands but reserved words. See comments below.)

    0 讨论(0)
  • 2021-01-05 08:49

    It has to do with the order of expansions.

    From help expand-command-substitution in fish:

    When combining multiple parameter expansions, expansions are performed in the following order:

     * Command substitutions
     * Variable expansions
     * Bracket expansion
     * Pid expansion
     * Wildcard expansion
    

    Expansions are performed from right to left, nested bracket expansions are performed from the inside and out.

    From man bash:

    The order of expansions is: brace expansion, tilde expansion, parameter, variable and arithmetic expansion and command substitution (done in a left-to-right fashion), word splitting, and pathname expansion.

    0 讨论(0)
提交回复
热议问题