vimwiki

Bahs operation

Add text to a file txt

It concatenate the text type at the end of the file

  1. open the file: cat » name.txt
  2. type the text to add in bash
  3. ctrl + d to quit and save

Concatenate 2 files:

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