1 00:00:00,000 --> 00:00:04,300 [Intro Music] 2 00:00:04,380 --> 00:00:05,880 Let's briefly summarize what we 3 00:00:05,880 --> 00:00:07,500 discussed in previous lectures. 4 00:00:07,800 --> 00:00:09,420 First every process has three 5 00:00:09,420 --> 00:00:11,743 different data streams STDIN, 6 00:00:11,743 --> 00:00:14,250 STDOUT and STDERR. STDIN is 7 00:00:14,280 --> 00:00:17,280 incoming data stream, STDOUT and 8 00:00:17,310 --> 00:00:19,350 STDERR are two different 9 00:00:19,440 --> 00:00:21,390 outgoing data streams from every 10 00:00:21,390 --> 00:00:23,820 process. By default when you start 11 00:00:23,820 --> 00:00:25,620 a specific process inside of the 12 00:00:25,800 --> 00:00:28,740 shell like Z shell, or bash shell, or 13 00:00:28,740 --> 00:00:31,811 sh shell, those outgoing flows 14 00:00:31,811 --> 00:00:34,950 STDOUT and STDERR will be shown 15 00:00:35,010 --> 00:00:37,530 directly on your screen. But you're 16 00:00:37,530 --> 00:00:40,500 able to redirect those data flows 17 00:00:40,530 --> 00:00:42,600 to files, and you could even use 18 00:00:42,630 --> 00:00:46,035 different files for STDOUT and STDERR. 19 00:00:46,035 --> 00:00:48,570 Some processes also accept 20 00:00:48,900 --> 00:00:52,110 some text via STDIN. An example of 21 00:00:52,140 --> 00:00:54,870 such process is 'cat'. Next, you're 22 00:00:54,870 --> 00:00:56,940 able to concatenate different 23 00:00:56,940 --> 00:00:59,239 processes and send data from 24 00:00:59,239 --> 00:01:02,730 STDOUT from one process to STDIN of 25 00:01:02,730 --> 00:01:05,340 next process using pipe, '|' operator. 26 00:01:05,970 --> 00:01:07,560 And you could pipe multiple 27 00:01:07,560 --> 00:01:10,530 processes one by one. That's all 28 00:01:10,530 --> 00:01:12,660 for those lectures. And next, let's 29 00:01:12,660 --> 00:01:14,700 move to next subsection where we 30 00:01:14,700 --> 00:01:16,290 will talk about files 31 00:01:16,290 --> 00:01:18,360 management, and I'll explain you how 32 00:01:18,390 --> 00:01:20,400 to create new files, folders, how to 33 00:01:20,400 --> 00:01:22,740 edit contents of files and so on. I 34 00:01:22,740 --> 00:01:23,700 will see you guys in the next 35 00:01:23,700 --> 00:01:24,660 section. Bye-Bye. 36 00:01:24,660 --> 00:01:26,208 [no audio]