1 00:00:00,000 --> 00:00:04,300 [Intro Music] 2 00:00:04,350 --> 00:00:05,640 In the previous few lectures, we 3 00:00:05,640 --> 00:00:07,080 have talked about commands and 4 00:00:07,110 --> 00:00:08,369 I have explained to you what is 5 00:00:08,369 --> 00:00:10,170 difference between options and 6 00:00:10,200 --> 00:00:12,180 arguments. And of course, you could 7 00:00:12,180 --> 00:00:14,580 use multiple options and multiple 8 00:00:14,610 --> 00:00:16,559 arguments in every single command. 9 00:00:17,100 --> 00:00:19,140 In order to find out which options 10 00:00:19,170 --> 00:00:20,670 are supported by a specific 11 00:00:20,670 --> 00:00:22,920 command, you need to enter either 12 00:00:22,980 --> 00:00:25,700 'man', and command; or command, and 13 00:00:25,700 --> 00:00:28,290 '--help' option. In such case, you 14 00:00:28,290 --> 00:00:30,000 will see a list of all available 15 00:00:30,000 --> 00:00:32,280 options you're able to use. Also, 16 00:00:32,280 --> 00:00:34,950 you could find out which arguments 17 00:00:34,980 --> 00:00:36,600 are mandatory and which are 18 00:00:36,600 --> 00:00:38,880 optional. All right, now let's 19 00:00:38,880 --> 00:00:40,980 proceed, and let me now talk about 20 00:00:40,980 --> 00:00:43,140 processes. And you'll understand 21 00:00:43,140 --> 00:00:45,330 that basically, when you enter each 22 00:00:45,330 --> 00:00:47,370 command, you start specific 23 00:00:47,370 --> 00:00:49,500 process. And there are different 24 00:00:49,500 --> 00:00:51,420 processes. There are processes that 25 00:00:51,450 --> 00:00:53,880 simply quickly start, and afterwards 26 00:00:53,880 --> 00:00:55,830 they're stopped. For example, when 27 00:00:55,830 --> 00:00:58,860 you enter 'ls' or 'mkdir' command, 28 00:00:59,000 --> 00:01:02,300 you start corresponding 'ls' or 'mkdir' 29 00:01:02,300 --> 00:01:04,300 process, and those processes do 30 00:01:04,379 --> 00:01:06,000 their job and afterwards, they 31 00:01:06,000 --> 00:01:08,370 simply stop. Also, there are so 32 00:01:08,370 --> 00:01:11,280 called long running processes like 33 00:01:11,310 --> 00:01:13,800 'bash' shell process or 'sh' shell 34 00:01:13,800 --> 00:01:16,050 process and so on. I'll talk about 35 00:01:16,050 --> 00:01:18,176 all of that in this and next lectures. 36 00:01:18,176 --> 00:01:19,100 Let's get started. 37 00:01:19,100 --> 00:01:21,237 [no audio]