Re: Broken bash command substitution

2016-11-26 Thread L. A. Walsh
Gerrit Haase wrote: 2016-11-24 17:25 GMT+01:00 L. A. Walsh says: Tydus wrote: You didn't specify what version of bash you are running. Therefore he attached the cygcheck output which says: bash 4.3.46-7 --- Is that the same version as he's running on linux?

Re: Broken bash command substitution

2016-11-25 Thread Gerrit Haase
2016-11-24 17:25 GMT+01:00 L. A. Walsh says: > Tydus wrote: > > > You didn't specify what version of bash you are running. Therefore he attached the cygcheck output which says: bash 4.3.46-7 ;) Gerrit -- Problem reports: http://cygwin.com/problems.html FAQ:

Re: Broken bash command substitution

2016-11-24 Thread L. A. Walsh
Tydus wrote: Dear list, I use Cygwin64 for a long time and everything went well. However, after one setup.exe update, the command substitution (`foo`) is broken on bash. You didn't specify what version of bash you are running. Since here: $ ssh a-linux-server $ A=`echo 123 | cat`;

Broken bash command substitution

2016-11-24 Thread Tydus
Dear list, I use Cygwin64 for a long time and everything went well. However, after one setup.exe update, the command substitution (`foo`) is broken on bash. How to reproduce: $ echo "===`echo 123`===" ===123=== $ echo "===`echo 123 | cat`===" ===123=== $ A=`echo 123`; echo "===$A===" ===123==