←to practical programming
Lecture IO, DVCS
  1. Standard output and standard error streams;
  2. Redirection of stdout and stderr;
  3. File streams;
  4. Standard input stream, redirection, piping;
  5. Distributed Version Control Systems.
Reading
  1. Note input/output[];
  2. Redirection and piping[];
  3. Bash manual, section 'redirection',
    man --pager='pager -p ^REDIRECTION' bash
    
    Your pager is probably 'less' so you can just as well do
    man --pager='less -p ^REDIRECTION' bash
    
  4. Distributed Version Control Systems[];
  5. Git tutorial[];
Exercises
  1. Exercise input/output[];
  2. Exercise Distributed Version Control System[];