A sequence expression takes the form x..y[..incr], where x and y are either integers or letters, and incr, an optional increment, is an integer. When integers are supplied, the expression expands to each number between x and y, inclusive. [..]. When letters are supplied, the expression expands to each character lexicographically between x and y, inclusive, using the C locale. Note that both x and y must be of the same type (integer or letter). When the increment is supplied, it is used as the difference between each term. The default increment is 1 or -1 as appropriate.
wtf
$ mkdir -p ~/Documents/ Work/ {notes, uploads}/
i wouldn't trust a person who knows this kind of stuff
π₯°Brace Expansionπ₯°
wtf
$ mkdir -p ~/Documents/ Work/ {notes, uploads}/
mkdir: created directory: '/home/user/Documents/Work
mkdir: created directory: '/home/user/Documents/Work/notes'
mkdir created directory: /home/user/Documents/Work/uploads'
i wouldn't trust a person who knows this kind of stuff
π₯°Brace Expansionπ₯°
β€2