Dears, I have a code to generate many text files, and I faced a problem that the code takes time as a result of repetitions so, how "simply" I add a command in bash .sh script and exclude the repeating values e.g. (0.45, 0.45,0.50) is used but (0.45,0.50,0.45) and (0.50,0.45,0.45) ... are excluded
i = 0
for VX1 in 0.45 0.50 0.55
do
for VX2 in 0.45 0.50 0.55
do
for VX3 in 0.45 0.50 0.55
do
let "i++"