Closed simonmichael closed 3 years ago
It always shows the command first, when it should be input first for formats 2 and 3. Eg:
$ cat a.test false <<< input >>> >>>=1 $ shelltest a.test --print=v1 false <<< input >>>= 1 $ shelltest a.test --print=v2 $$$ false <<< input >>>= 1 $ shelltest a.test --print=v3 $ false < input >= 1
It should be more like:
$ shelltest a.test --print=v2 <<< input $$$ false >>>= 1 $ shelltest a.test --print=v3 < input $ false >= 1
It always shows the command first, when it should be input first for formats 2 and 3. Eg: