Stuff 

Имена файлов не могут начинаться со знаков ‘/ и с null character ‘\0'
cat - >> foo.txt
#you can directrly write to stdin until you hit ^D or ^C ["-" is optional]
cat 1.txt - 3 txt > all.txt
#besides, you can cancatinate 2 files with any stdin in 3th file
cat < file1 > file2
#copy file1 to file2
Отличие command от  utility
  • command - built in в оболочку (терминал)
  • utility - ты устанавливаешь сам
Добавить значение  ~/bin к PATH: PATH = $PATH:$HOME/bin
Команда script собирает все выполненные команды данной сессии в один файл.
Важно: в начале сессии надо выполнить команду script, а в конце выполнить exit
Screen Shot 2018-10-27 at 23.30.28.png
Screen Shot 2018-10-27 at 23.30.34.png