I want to create multiple file creation with touch, but I am constrained by space, because I want to use space in my files like this
1 Joe Arnold
2 lucky man
3 directory lib
I try like this
touch 1 joe arnold
after I execute it, the command has 3 files (1, joe, arnold)
help please
Use double quote (
"
), enclosing characters in double quotes preserves the literal value of all characters within the quotes.You may want to read bash manual regarding double quotes.