1. How to Create Multiple Files with numeric incrementation from 1 to 10 ?
Command | touch {1..10} |
–
2. How to Create Multiple Files with numeric incrementation ranges from 1 to 14 & 16 to 18 ?
Command | touch {11.14} {16..18} |
–
3. Create Date format files ?
Command | touch {1..31}-August-2021 |