Si quieres crear varios archivos de prueba en Linux, se puede hacerlo de la manera siguiente:
Red Hat > ls
Red Hat > touch testfile{1..10}
Red Hat > ls -1
testfile1
testfile10
testfile2
testfile3
testfile4
testfile5
testfile6
testfile7
testfile8
testfile9
Red Hat >
Pero si intentas hacerlo en UNIX, no funciona. UNIX te da sólo un archivo que se llama testfile{1..10}:
Tru64 > ls
Tru64 > touch testfile{1..10}
Tru64 > ls
testfile{1..10}
Tru64 >