Monday, February 17, 2020

create multiple files with single command in linux

touch {events.txt,app.txt,hello.txt} 

will create multiple files 




or a regex can be used as shown bellow.


touch hello{1..10}.txt


No comments: