the command is something like this:
parallel --link echo ::: A B C ::: 1 2 3 4 5 ::: X O
The result is
| A | 1 | X |
| B | 2 | O |
| C | 3 | X |
| A | 4 | O |
| B | 5 | X |
But I want the result like this:
| A | 1 | X |
| B | 2 | O |
| C | 3 | |
| | 4 | |
| | 5 | |
Is it possible?