It concatenate the text type at the end of the file
cat » name.txtctrl + d to quit and save| key | action | exemple | output |
|---|---|---|---|
| > | write output to a file | ls > ls.txt | |
| » | concatenate output to a file | ls » ls.txt | |
| { } | brace expansion | echo test{.py,.c} | tets.py test.c |