zsh and POSIX equivalent of bash's `var>&1`

The name of the pictureThe name of the pictureThe name of the pictureClash Royale CLAN TAG#URR8PPP











up vote
2
down vote

favorite












Is there an equivalent of var>&1 in zsh?



The bash manual says:




Each redirection that may be preceded by a file descriptor number may instead be preceded by a word of the form varname. In this case, for each redirection operator except >&- and <&-, the shell will allocate a file descriptor greater than 10 and assign it to varname. If >&- or <&- is preceded by varname, the value of varname defines the file descriptor to close.




An example usage of this is capturing STDERR from a command:



 error=$( ls -ld /XXXX /bin 1>&$tmp ; 2>&1); tmp>&1


How would one do the same in zsh, and also in POSIX-land?










share|improve this question

























    up vote
    2
    down vote

    favorite












    Is there an equivalent of var>&1 in zsh?



    The bash manual says:




    Each redirection that may be preceded by a file descriptor number may instead be preceded by a word of the form varname. In this case, for each redirection operator except >&- and <&-, the shell will allocate a file descriptor greater than 10 and assign it to varname. If >&- or <&- is preceded by varname, the value of varname defines the file descriptor to close.




    An example usage of this is capturing STDERR from a command:



     error=$( ls -ld /XXXX /bin 1>&$tmp ; 2>&1); tmp>&1


    How would one do the same in zsh, and also in POSIX-land?










    share|improve this question























      up vote
      2
      down vote

      favorite









      up vote
      2
      down vote

      favorite











      Is there an equivalent of var>&1 in zsh?



      The bash manual says:




      Each redirection that may be preceded by a file descriptor number may instead be preceded by a word of the form varname. In this case, for each redirection operator except >&- and <&-, the shell will allocate a file descriptor greater than 10 and assign it to varname. If >&- or <&- is preceded by varname, the value of varname defines the file descriptor to close.




      An example usage of this is capturing STDERR from a command:



       error=$( ls -ld /XXXX /bin 1>&$tmp ; 2>&1); tmp>&1


      How would one do the same in zsh, and also in POSIX-land?










      share|improve this question













      Is there an equivalent of var>&1 in zsh?



      The bash manual says:




      Each redirection that may be preceded by a file descriptor number may instead be preceded by a word of the form varname. In this case, for each redirection operator except >&- and <&-, the shell will allocate a file descriptor greater than 10 and assign it to varname. If >&- or <&- is preceded by varname, the value of varname defines the file descriptor to close.




      An example usage of this is capturing STDERR from a command:



       error=$( ls -ld /XXXX /bin 1>&$tmp ; 2>&1); tmp>&1


      How would one do the same in zsh, and also in POSIX-land?







      bash shell zsh posix






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked 43 mins ago









      Tom Hale

      5,98122776




      5,98122776




















          1 Answer
          1






          active

          oldest

          votes

















          up vote
          3
          down vote













          Support for var>... was added to ksh93, bash and zsh at the same time on a suggestion of a zsh developer. The var>... operator works in zsh, but not for compound commands.



          Also note that while in:



          cmd 3>&1


          The fd 3 is open only for cmd, in



          cmd var>&1


          The dynamically allocated fd (stored in $var) remains open after cmd returns in both zsh and bash. That operator is mostly designed to be used with exec (see also sysopen in zsh for a more straightforward interface to the open() system call).



          So you code above is missing some code to close that fd in bash.



          So here you could do:



          exec tmp>&1
          errors=$(exec 2>&1 >&$tmp tmp>&-; ls -ld /x /bin | tr o Z)
          exec tmp>&-


          Which would work in bash, zsh and ksh93 and not leak a fd.



          But you don't need a dynamically allocated fd here, just use for instance the fd 3 which is not used in that code:



           errors=$(exec 2>&1 >&3 3>&-; ls -ld /x /bin 3>&1


          Which would work in any Bourne-like shell.






          share|improve this answer






















            Your Answer







            StackExchange.ready(function()
            var channelOptions =
            tags: "".split(" "),
            id: "106"
            ;
            initTagRenderer("".split(" "), "".split(" "), channelOptions);

            StackExchange.using("externalEditor", function()
            // Have to fire editor after snippets, if snippets enabled
            if (StackExchange.settings.snippets.snippetsEnabled)
            StackExchange.using("snippets", function()
            createEditor();
            );

            else
            createEditor();

            );

            function createEditor()
            StackExchange.prepareEditor(
            heartbeatType: 'answer',
            convertImagesToLinks: false,
            noModals: false,
            showLowRepImageUploadWarning: true,
            reputationToPostImages: null,
            bindNavPrevention: true,
            postfix: "",
            onDemand: true,
            discardSelector: ".discard-answer"
            ,immediatelyShowMarkdownHelp:true
            );



            );













             

            draft saved


            draft discarded


















            StackExchange.ready(
            function ()
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f472557%2fzsh-and-posix-equivalent-of-bashs-var1%23new-answer', 'question_page');

            );

            Post as a guest






























            1 Answer
            1






            active

            oldest

            votes








            1 Answer
            1






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes








            up vote
            3
            down vote













            Support for var>... was added to ksh93, bash and zsh at the same time on a suggestion of a zsh developer. The var>... operator works in zsh, but not for compound commands.



            Also note that while in:



            cmd 3>&1


            The fd 3 is open only for cmd, in



            cmd var>&1


            The dynamically allocated fd (stored in $var) remains open after cmd returns in both zsh and bash. That operator is mostly designed to be used with exec (see also sysopen in zsh for a more straightforward interface to the open() system call).



            So you code above is missing some code to close that fd in bash.



            So here you could do:



            exec tmp>&1
            errors=$(exec 2>&1 >&$tmp tmp>&-; ls -ld /x /bin | tr o Z)
            exec tmp>&-


            Which would work in bash, zsh and ksh93 and not leak a fd.



            But you don't need a dynamically allocated fd here, just use for instance the fd 3 which is not used in that code:



             errors=$(exec 2>&1 >&3 3>&-; ls -ld /x /bin 3>&1


            Which would work in any Bourne-like shell.






            share|improve this answer


























              up vote
              3
              down vote













              Support for var>... was added to ksh93, bash and zsh at the same time on a suggestion of a zsh developer. The var>... operator works in zsh, but not for compound commands.



              Also note that while in:



              cmd 3>&1


              The fd 3 is open only for cmd, in



              cmd var>&1


              The dynamically allocated fd (stored in $var) remains open after cmd returns in both zsh and bash. That operator is mostly designed to be used with exec (see also sysopen in zsh for a more straightforward interface to the open() system call).



              So you code above is missing some code to close that fd in bash.



              So here you could do:



              exec tmp>&1
              errors=$(exec 2>&1 >&$tmp tmp>&-; ls -ld /x /bin | tr o Z)
              exec tmp>&-


              Which would work in bash, zsh and ksh93 and not leak a fd.



              But you don't need a dynamically allocated fd here, just use for instance the fd 3 which is not used in that code:



               errors=$(exec 2>&1 >&3 3>&-; ls -ld /x /bin 3>&1


              Which would work in any Bourne-like shell.






              share|improve this answer
























                up vote
                3
                down vote










                up vote
                3
                down vote









                Support for var>... was added to ksh93, bash and zsh at the same time on a suggestion of a zsh developer. The var>... operator works in zsh, but not for compound commands.



                Also note that while in:



                cmd 3>&1


                The fd 3 is open only for cmd, in



                cmd var>&1


                The dynamically allocated fd (stored in $var) remains open after cmd returns in both zsh and bash. That operator is mostly designed to be used with exec (see also sysopen in zsh for a more straightforward interface to the open() system call).



                So you code above is missing some code to close that fd in bash.



                So here you could do:



                exec tmp>&1
                errors=$(exec 2>&1 >&$tmp tmp>&-; ls -ld /x /bin | tr o Z)
                exec tmp>&-


                Which would work in bash, zsh and ksh93 and not leak a fd.



                But you don't need a dynamically allocated fd here, just use for instance the fd 3 which is not used in that code:



                 errors=$(exec 2>&1 >&3 3>&-; ls -ld /x /bin 3>&1


                Which would work in any Bourne-like shell.






                share|improve this answer














                Support for var>... was added to ksh93, bash and zsh at the same time on a suggestion of a zsh developer. The var>... operator works in zsh, but not for compound commands.



                Also note that while in:



                cmd 3>&1


                The fd 3 is open only for cmd, in



                cmd var>&1


                The dynamically allocated fd (stored in $var) remains open after cmd returns in both zsh and bash. That operator is mostly designed to be used with exec (see also sysopen in zsh for a more straightforward interface to the open() system call).



                So you code above is missing some code to close that fd in bash.



                So here you could do:



                exec tmp>&1
                errors=$(exec 2>&1 >&$tmp tmp>&-; ls -ld /x /bin | tr o Z)
                exec tmp>&-


                Which would work in bash, zsh and ksh93 and not leak a fd.



                But you don't need a dynamically allocated fd here, just use for instance the fd 3 which is not used in that code:



                 errors=$(exec 2>&1 >&3 3>&-; ls -ld /x /bin 3>&1


                Which would work in any Bourne-like shell.







                share|improve this answer














                share|improve this answer



                share|improve this answer








                edited 17 mins ago

























                answered 25 mins ago









                Stéphane Chazelas

                286k53528867




                286k53528867



























                     

                    draft saved


                    draft discarded















































                     


                    draft saved


                    draft discarded














                    StackExchange.ready(
                    function ()
                    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f472557%2fzsh-and-posix-equivalent-of-bashs-var1%23new-answer', 'question_page');

                    );

                    Post as a guest













































































                    Comments

                    Popular posts from this blog

                    What does second last employer means? [closed]

                    List of Gilmore Girls characters

                    Confectionery