bracex

Expand bash-style brace patterns in strings and command arguments.

pipmacoslinuxwindows
Try with needOr install directly
Source

About

Bash style brace expander.

Commands

bracex

Examples

expand multiple file patterns at once$ bracex 'file{1,2,3}.txt'
generate sequence of numbers in brace notation$ bracex 'test{1..5}.log'
create multiple directory names with brace expansion$ bracex 'src/{components,utils,helpers}/'
combine nested braces to generate all combinations$ bracex '{a,b}{1,2}{x,y}'
expand braces with custom step values$ bracex 'num{0..20..5}'