Skip to content

Latest commit

 

History

History
16 lines (11 loc) · 292 Bytes

File metadata and controls

16 lines (11 loc) · 292 Bytes

Brace {}

Brace expansion is a mechanism by which arbitrary strings may be generated

echo ~/{file1,file2,file3}.js 
#/home/spsarras/file1.js /home/spsarras/file2.js /home/spsarras/file3.js

echo {0..5}
#0 1 2 3 4 5

echo {00..8..2}
#00 02 04 06 08

HOME