1
00:00:00,000 --> 00:00:10,040
Once again, we're at the end of the lesson, time for a lap.

2
00:00:10,040 --> 00:00:14,720
In this lesson, write a shell script that rewrites filenames to the filename in uppercase.

3
00:00:14,720 --> 00:00:17,740
And the script must meet the following requirements.

4
00:00:17,740 --> 00:00:21,480
The filename should be provided as an argument while running the script.

5
00:00:21,480 --> 00:00:25,879
And if no argument was provided, the script should print an error message.

6
00:00:25,879 --> 00:00:30,840
Do not use existing files, but use the touch command to create some dummy files before

7
00:00:30,840 --> 00:00:32,400
running the script.

8
00:00:32,400 --> 00:00:36,320
The purpose here is that you are not going to mess up the contents of your etc directory

9
00:00:36,320 --> 00:00:38,720
or any other important files.

10
00:00:38,720 --> 00:00:42,720
So just to be clear, the script shouldn't be creating the files, but before running

11
00:00:42,720 --> 00:00:48,560
the script, you use touch file 1 and then you run the script to convert it to uppercase.

12
00:00:48,560 --> 00:00:49,200
Good luck with that.

