In order to be able to create several files at the same time you can type this in konsole or xterm.
touch somefile{1,2,3,4,5}.txt
# Results
somefile1.txt, somefile2.txt and so on
touch somefile.{cpp,h,pro,ui}
# Results
somefile.cpp, somefile.h, somefile.pro, somefile.ui
It's up to you where you place the {} parentheses but remember that the results are not the same.
touch somefile{1,2,3,4,5}.txt
# Results
somefile1.txt, somefile2.txt and so on
touch somefile.{cpp,h,pro,ui}
# Results
somefile.cpp, somefile.h, somefile.pro, somefile.ui
It's up to you where you place the {} parentheses but remember that the results are not the same.
Comment