How i can execute command in linux terminal without using space?
example:
cat text.log -> cat${space_code}text.log
Advertisement
Answer
Brace expansion can help you to construct complex bash commands without the use of spaces:
$ {cat,text.log}
How i can execute command in linux terminal without using space?
example:
cat text.log -> cat${space_code}text.log
Brace expansion can help you to construct complex bash commands without the use of spaces:
$ {cat,text.log}