oguz-ismail

Results 5 issues of oguz-ismail

To reproduce, put the following into a file (say, `foo`), ``` for x; do shift $# echo $x done ``` and run: ``` $ oksh ./foo x y z x...

* variable assignments where the value to be assigned is an empty string don't work, such as ``` foo= ``` * redirections can't be applied to brace groups (and perhaps...

bug

The manual states: > jq has a few operators of the form **a op= b**, which are all equivalent to **a |= . op b**. However this is not true;...

docs

The following shell script should print 1 according to POSIX: for x in y; do ! continue done echo $? But it prints 0 on yash.

bug

See: ``` oguz@LAPTOP-KKDLALF8:~$ jaq -n 'foreach . as $x (.; .; .)' Error: Unexpected token while parsing string, expected =, [, and, =, |=, !=, ==, ", >, ?, |,...