有可能做这样的事情:
原文链接:https://www.f2er.com/bash/388679.htmlstart=1 end=10 echo {$start..$end} # Ouput: {1..10} # Expected: 1 2 3 ... 10 (echo {1..10})