Hi HN,
I need to run a bash script with all the possible combination of input arguments.
To be clear something like this but with way more arguments:
./test 1 "aa" 7
./test 1 "aa" 8
./test 1 "bb" 7
./test 1 "bb" 8
./test 2 "aa" 7
./test 2 "aa" 8
./test 2 "bb" 7
./test 2 "bb" 8
I could simply use a bash loop but I remember that there was some nice tool to achieve this, and I discovered this tool in some article a while ago here on HN.
Some of you can recall what tool it was ?