2c29e259b26ae9eba48e7c1c13c54a83bb43f979
[swc-modular-shell.git] / shell / Readme.md
1 # The Shell
2
3 **Material by Milad Fatenejad, Sasha Wood, and Radhika Khetani**
4
5 # What is the shell how do I access the shell?
6
7 The *shell* is a program that presents a command line interface
8 which allows you to control your computer using commands entered
9 with a keyboard instead of controlling graphical user interfaces
10 (GUIs) with a mouse/keyboard combination.
11
12 Use a browser to open the tutorial on github, located at:
13     https://github.com/USERNAME/boot-camps/tree/YYYY-MM-PLACE
14
15 Click on the directory named `shell`.
16
17 A *terminal* is a program you run that gives you access to the
18 shell. There are many different terminal programs that vary across
19 operating systems.
20          
21 There are many reasons to learn about the shell. In my opinion, the
22 most important reasons are that: 
23
24 1.  It is very common to encounter the shell and
25     command-line-interfaces in scientific computing, so you will
26     probably have to learn it eventually 
27
28 2.  The shell is a really powerful way of interacting with your
29     computer. GUIs and the shell are complementary - by knowing both
30     you will greatly expand the range of tasks you can accomplish with
31     your computer. You will also be able to perform many tasks more
32     efficiently.
33
34 The shell is just a program and there are many different shell
35 programs that have been developed. The most common shell (and the one
36 we will use) is called the Bourne-Again SHell (bash). Even if bash is
37 not the default shell, it is usually installed on most systems and can be
38 started by typing `bash` in the terminal. Many commands, especially a
39 lot of the basic ones, work across the various shells but many things
40 are different. I recommend sticking with bash and learning it well.
41 ([Here is a link for more information](http://en.wikipedia.org/wiki/Bash_(Unix_shell))
42
43 To open a terminal, just single click on the "Terminal" icon on the
44 Desktop.
45
46 # The Example: Manipulating Experimental Data Files
47
48 We will spend most of our time learning about the basics of the shell
49 by manipulating some experimental data from a hearing test. To get
50 the data for this test, you will need internet access. Just enter the
51 command:
52
53     git clone -b YYYY-MM-PLACE https://github.com/USERNAME/boot-camps.git
54
55 Followed by:
56
57     cd boot-camps
58     git checkout YYYY-MM-PLACE
59
60 These 2 commands will grab all of the data needed for this workshop from the
61 internet.
62
63 # Let's get started
64
65 One very basic command is `echo`. This command just prints text to
66 the terminal. Try the command:
67
68     echo Hello, World
69
70 Then press enter. You should see the text "Hello, World" printed back
71 to you. The echo command is useful for printing from a shell script,
72 for displaying variables, and for generating known values to pass
73 to other programs.
74
75 ## Moving around the file system
76
77 Let's learn how to move around the file system using command line
78 programs. This is really easy to do using a GUI (just click on
79 things). Once you learn the basic commands, you'll see that it is
80 really easy to do in the shell too. 
81
82 First we have to know where we are. The program `pwd` (print working
83 directory) tells you where you are sitting in the directory tree. The
84 command `ls` will list the files in files in the current
85 directory. Directories are often called "folders" because of how they
86 are represented in GUIs. Directories are just listings of files. They
87 can contain other files or directories.
88
89 Whenever you start up a terminal, you will start in a special
90 directory called the *home* directory. Every user has their own home
91 directory where they have full access to do whatever they want. In
92 this case, the `pwd` command tells us that we are in the `/home/swc`
93 directory. This is the home directory for the `swc` user. That is our
94 user name. You can always find out your user name by entering the
95 command `whoami`. 
96
97 **File Types**
98
99 When you enter the `ls` command lists the contents of the current
100 directory. There are several items in the home directory, notice that
101 they are all colored blue. This tells us that all of these items are
102 directories as opposed to files.
103
104 Lets create an empty file using the `touch` command. Enter the
105 command:
106
107     touch testfile
108
109 Then list the contents of the directory again. You should see that a
110 new entry, called `testfile`, exists. It is colored white meaning that
111 it is a file, as opposed to a directory. The `touch` command just
112 creates an empty file. 
113
114 Some terminals will not color the directory entries in this very
115 convenient way. In those terminals, use `ls -F` instead of `ls`. The
116 `-F` argument modifies the results so that a slash is placed at the
117 end of directories. If the file is *executable* meaning that it can be
118 run like a program, then a star will be placed at the end of of the
119 file name.
120
121 You can also use the command `ls -l` to see whether items in a
122 directory are files or directories. `ls -l` gives a lot more
123 information too, such as the size of the file and information about
124 the owner. If the entry is a directory, then the first letter will be
125 a "d". The fifth column shows you the size of the entries in
126 bytes. Notice that `testfile` has a size of zero.
127
128 Now, let's get rid of `testfile`. To remove a file, just enter the
129 command:
130
131     rm testfile
132
133 The `rm` command can be used to remove files. If you enter `ls` again,
134 you will see that `testfile` is gone.
135
136
137 **Changing Directories**
138
139 Now, let's move to a different directory. The command `cd` (change
140 directory) is used to move around. Let's move into the `boot-camps`
141 directory. Enter the following command:
142
143     cd boot-camps
144
145 Now use the `ls` command to see what is inside this directory. You
146 will see that there is an entry which is green. This means that this
147 is an executable. If you use `ls -F` you will see that this file ends
148 with a star.
149
150 This directory contains all of the material for this boot camp. Now
151 move to the directory containing the data for the shell tutorial:
152
153     cd shell
154
155 If you enter the `cd` command by itself, you will return to the home
156 directory. Try this, and then navigate back to the `shell`
157 directory.
158
159 ## Arguments
160
161 Most programs take additional arguments that control their exact
162 behavior. For example, `-F` and `-l` are arguments to `ls`.  The `ls`
163 program, like many programs, take a lot of arguments. But how do we
164 know what the options are to particular commands?
165
166 Most commonly used shell programs have a manual. You can access the
167 manual using the `man` program. Try entering:
168
169     man ls
170
171 This will open the manual page for `ls`. Use the space key to go
172 forward and b to go backwards. When you are done reading, just hit `q`
173 to exit.
174
175 Programs that are run from the shell can get extremely complicated. To
176 see an example, open up the manual page for the `find` program,
177 which we will use later this session. No one can possibly learn all of
178 these arguments, of course. So you will probably find yourself
179 referring back to the manual page frequently.
180
181 **Examining the contents of other directories**
182
183 By default, the `ls` commands lists the contents of the working
184 directory (i.e. the directory you are in). You can always find the
185 directory you are in using the `pwd` command. However, you can also
186 give `ls` the names of other directories to view. Navigate to the
187 home directory if you are not already there. Then enter the
188 command:
189
190     ls boot-camps
191
192 This will list the contents of the `boot-camps` directory without
193 you having to navigate there. Now enter:
194
195     ls boot-camps/shell
196
197 This prints the contents of `shell`. The `cd` command works in a
198 similar way. Try entering:
199
200     cd boot-camps/shell
201
202 and you will jump directly to `shell` without having to go through
203 the intermediate directory.
204
205 ## Full vs. Relative Paths
206
207 The `cd` command takes an argument which is the directory
208 name. Directories can be specified using either a *relative* path a
209 full *path*. The directories on the computer are arranged into a
210 hierarchy. The full path tells you where a directory is in that
211 hierarchy. Navigate to the home directory. Now, enter the `pwd`
212 command and you should see:
213
214     /home/swc
215
216 which is the full name of your home directory. This tells you that you
217 are in a directory called `swc`, which sits inside a directory called
218 `home` which sits inside the very top directory in the hierarchy. The
219 very top of the hierarchy is a directory called `/` which is usually
220 referred to as the *root directory*. So, to summarize: `swc` is a
221 directory in `home` which is a directory in `/`.
222
223 Now enter the following command:
224
225     cd /home/swc/boot-camps/shell
226
227 This jumps to `shell`. Now go back to the home directory. We saw
228 earlier that the command:
229
230     cd boot-camps/shell
231
232 had the same effect - it took us to the `shell` directory. But,
233 instead of specifying the full path
234 (`/home/swc/boot-camps/shell`), we specified a *relative path*. In
235 other words, we specified the path relative to our current
236 directory. A full path always starts with a `/`. A relative path does
237 not. You can usually use either a full path or a relative path
238 depending on what is most convenient. If we are in the home directory,
239 it is more convenient to just enter the relative path since it
240 involves less typing.
241
242 Now, list the contents of the /bin directory. Do you see anything
243 familiar in there?
244
245
246 ## Saving time with shortcuts, wild cards, and tab completion
247
248 **Shortcuts**
249
250 There are some shortcuts which you should know about. Dealing with the
251 home directory is very common. So, in the shell the tilde character,
252 `~`, is a shortcut for your home directory. Navigate to the `shell`
253 directory, then enter the command:
254
255     ls ~
256
257 This prints the contents of your home directory, without you having to
258 type the full path. The shortcut `..` always refers to the directory
259 above your current directory. Thus: 
260
261     ls ..
262
263 prints the contents of the `/home/swc/boot-camps`. You can chain
264 these together, so:
265
266     ls ../../
267
268 prints the contents of `/home/swc` which is your home
269 directory. Finally, the special directory `.` always refers to your
270 current directory. So, `ls`, `ls .`, and `ls ././././.` all do the
271 same thing, they print the contents of the current directory. This may
272 seem like a useless shortcut right now, but we'll see when it is
273 needed in a little while.
274
275 To summarize, the commands `ls ~`, `ls ~/.`, `ls ../../`, and `ls
276 /home/swc` all do exactly the same thing. These shortcuts are not
277 necessary, they are provided for your convenience.
278
279 **Our data set: Cochlear Implants**
280
281 A cochlear implant is a small electronic device that is surgically
282 implanted in the inner ear to give deaf people a sense of
283 hearing. More than a quarter of a million people have them, but there
284 is still no widely-accepted benchmark to measure their effectiveness.
285 In order to establish a baseline for such a benchmark, our supervisor
286 got teenagers with CIs to listen to audio files on their computer and
287 report:
288
289 1.  the quietest sound they could hear
290 2.  the lowest and highest tones they could hear
291 3.  the narrowest range of frequencies they could discriminate
292
293 To participate, subjects attended our laboratory and one of our lab
294 techs played an audio sample, and recorded their data - when they
295 first heard the sound, or first heard a difference in the sound.  Each
296 set of test results were written out to a text file, one set per file.
297 Each participant has a unique subject ID, and a made-up subject name.
298 Each experiment has a unique experiment ID. The experiment has
299 collected 351 files so far.
300
301 The data is a bit of a mess! There are inconsistent file names, there
302 are extraneous "NOTES" files that we'd like to get rid of, and the
303 data is spread across many directories. We are going to use shell
304 commands to get this data into shape. By the end we would like to:
305
306 1.  Put all of the data into one directory called "alldata"
307
308 2.  Have all of the data files in there, and ensure that every file
309     has a ".txt" extension
310
311 3.  Get rid of the extraneous "NOTES" files
312
313 If we can get through this example in the available time, we will move
314 onto more advanced shell topics...
315
316 **Wild cards**
317
318 Navigate to the `~/boot-camps/shell/data/THOMAS` directory. This
319 directory contains our hearing test data for THOMAS. If we type `ls`,
320 we will see that there are a bunch of files which are just four digit
321 numbers. By default, `ls` lists all of the files in a given
322 directory. The `*` character is a shortcut for "everything". Thus, if
323 you enter `ls *`, you will see all of the contents of a given
324 directory. Now try this command:
325
326     ls *1
327
328 This lists every file that ends with a `1`. This command:
329
330     ls /usr/bin/*.sh
331
332 Lists every file in `/usr/bin` that ends in the characters `.sh`. And
333 this command:
334
335     ls *4*1
336
337 lists every file in the current directory which contains the number
338 `4`, and ends with the number `1`. There are four such files: `0241`,
339 `0341`, `0431`, and `0481`. 
340
341 So how does this actually work? Well...when the shell (bash) sees a
342 word that contains the `*` character, it automatically looks for files
343 that match the given pattern. In this case, it identified four such
344 files. Then, it replaced the `*4*1` with the list of files, separated
345 by spaces. In other the two commands:
346
347     ls *4*1
348     ls 0241 0341 0431 0481
349
350 are exactly identical. The `ls` command cannot tell the difference
351 between these two things.
352
353 * * * *
354 **Short Exercise**
355
356 Do each of the following using a single `ls` command without
357 navigating to a different directory.
358
359 1.  List all of the files in `/bin` that contain the letter `a`
360 2.  List all of the files in `/bin` that contain the letter `a` or the letter `b`
361 3.  List all of the files in `/bin` that contain the letter `a` AND the letter `b`
362
363 * * * *
364
365 **Tab Completion**
366
367 Navigate to the home directory. Typing out directory names can waste a
368 lot of time. When you start typing out the name of a directory, then
369 hit the tab key, the shell will try to fill in the rest of the
370 directory name. For example, enter:
371
372     cd S<tab>
373
374 The shell will fill in the rest of the directory name for
375 `boot-camps`. Now enter:
376
377     ls 3<tab><tab>
378
379 When you hit the first tab, nothing happens. The reason is that there
380 are multiple directories in the home directory which start with
381 3. Thus, the shell does not know which one to fill in. When you hit
382 tab again, the shell will list the possible choices. 
383
384 Tab completion can also fill in the names of programs. For example,
385 enter `e<tab><tab>`. You will see the name of every program that
386 starts with an `e`. One of those is `echo`. If you enter `ec<tab>` you
387 will see that tab completion works.
388
389 **Command History**
390
391 You can easily access previous commands.  Hit the up arrow.  
392 Hit it again.  You can step backwards through your command history. 
393 The down arrow takes your forwards in the command history.  
394
395 ^-C will cancel the command you are writing, and give you a fresh prompt.
396
397 ^-R will do a reverse-search through your command history.  This
398 is very useful.
399
400 ## Which program? ##
401
402 Commands like `ls`, `rm`, `echo`, and `cd` are just ordinary programs
403 on the computer. A program is just a file that you can *execute*. The
404 program `which` tells you the location of a particular program. For
405 example:
406
407     which ls
408
409 Will return "/bin/ls". Thus, we can see that `ls` is a program that
410 sits inside of the `/bin` directory. Now enter:
411
412     which find
413
414 You will see that `find` is a program that sits inside of the
415 `/usr/bin` directory.
416
417 So ... when we enter a program name, like `ls`, and hit enter, how
418 does the shell know where to look for that program? How does it know
419 to run `/bin/ls` when we enter `ls`. The answer is that when we enter
420 a program name and hit enter, there are a few standard places that the
421 shell automatically looks. If it can't find the program in any of
422 those places, it will print an error saying "command not found". Enter
423 the command:
424
425     echo $PATH
426
427 This will print out the value of the `PATH` environment variable. More
428 on environment variables later. Notice that a list of directories,
429 separated by colon characters, is listed. These are the places the
430 shell looks for programs to run. If your program is not in this list,
431 then an error is printed. The shell ONLY checks in the places listed
432 in the `PATH` environment variable. 
433
434 Navigate to the `shell` directory and list the contents. You will
435 notice that there is a program (executable file) called `hello` in
436 this directory. Now, try to run the program by entering:
437
438     hello
439
440 You should get an error saying that hello cannot be found. That is
441 because the directory `/home/swc/boot-camps/shell` is not in the
442 `PATH`. You can run the `hello` program by entering:
443
444     ./hello
445
446 Remember that `.` is a shortcut for the current working
447 directory. This tells the shell to run the `hello` program which is
448 located right here. So, you can run any program by entering the path
449 to that program. You can run `hello` equally well by specifying:
450
451     /home/swc/boot-camps/shell/hello
452
453 Or by entering:
454
455     ../shell/hello
456
457 When there are no `/` characters, the shell assumes you want to look
458 in one of the default places for the program.
459
460
461 ## Examining Files
462
463 We now know how to switch directories, run programs, and look at the
464 contents of directories, but how do we look at the contents of files?
465
466 The easiest way to examine a file is to just print out all of the
467 contents using the program `cat`. Enter the following command:
468
469     cat ex_data.txt
470
471 This prints out the contents of the `ex_data.txt` file. If you enter:
472
473     cat ex_data.txt ex_data.txt
474
475 It will print out the contents of `ex_data.txt` twice. `cat` just
476 takes a list of file names and writes them out one after another (this
477 is where the name comes from, `cat` is short for concatenate). 
478
479 * * * *
480 **Short Exercises**
481
482 1.  Print out the contents of the `~/boot-camps/shell/dictionary.txt`
483     file. What does this file contain?
484
485 2.  Without changing directories, (you should still be in `shell`),
486     use one short command to print the contents of all of the files in
487     the `/home/swc/boot-camps/shell/data/THOMAS` directory.
488
489 * * * *
490
491 `cat` is a terrific program, but when the file is really big, it can
492 be annoying to use. The program, `less`, is useful for this
493 case. Enter the following command:
494
495     less ~/boot-camps/shell/dictionary.txt
496
497 `less` opens the file, and lets you navigate through it. The commands
498 are identical to the `man` program. Use "space" to go forward and hit
499 the "b" key to go backwards. The "g" key goes to the beginning of the
500 file and "G" goes to the end. Finally, hit "q" to quit.
501
502 `less` also gives you a way of searching through files. Just hit the
503 "/" key to begin a search. Enter the name of the word you would like
504 to search for and hit enter. It will jump to the next location where
505 that word is found. Try searching the `dictionary.txt` file for the
506 word "cat". If you hit "/" then "enter", `less` will just repeat
507 the previous search. `less` searches from the current location and
508 works its way forward. If you are at the end of the file and search
509 for the word "cat", `less` will not find it. You need to go to the
510 beginning of the file and search.
511
512 Remember, the `man` program uses the same commands, so you can search
513 documentation using "/" as well!
514
515 * * * *
516 **Short Exercise**
517
518 Use the commands we've learned so far to figure out how to search
519 in reverse while using `less`.
520
521 * * * * 
522
523
524 ## Redirection
525
526 Let's turn to the experimental data from the hearing tests that we
527 began with. This data is located in the `~/boot-camps/shell/data`
528 directory. Each subdirectory corresponds to a particular participant
529 in the study. Navigate to the `Bert` subdirectory in `data`.  There
530 are a bunch of text files which contain experimental data
531 results. Lets print them all:
532
533     cat au*
534
535 Now enter the following command:
536
537     cat au* > ../all_data
538
539 This tells the shell to take the output from the `cat au*` command and
540 dump it into a new file called `../all_data`. To verify that this
541 worked, examine the `all_data` file. If `all_data` had already
542 existed, we would overwritten it. So the `>` character tells the shell
543 to take the output from what ever is on the left and dump it into the
544 file on the right. The `>>` characters do almost the same thing,
545 except that they will append the output to the file if it already
546 exists.
547
548 * * * *
549 **Short Exercise**
550
551 Use `>>`, to append the contents of all of the files which contain the
552 number 4 in the directory:
553
554     /home/swc/boot-camps/shell/data/gerdal
555
556 to the existing `all_data` file. Thus, when you are done `all_data`
557 should contain all of the experiment data from Bert and any
558 experimental data file from gerdal that contains the number 4.
559
560 * * * *
561
562
563 ## Creating, moving, copying, and removing
564
565 We've created a file called `all_data` using the redirection operator
566 `>`. This file is critical - it's our analysis results - so we want to
567 make copies so that the data is backed up.
568 Lets copy the file using the `cp` command. The `cp`
569 command backs up the file. Navigate to the `data` directory and enter:
570
571     cp all_data all_data_backup
572
573 Now `all_data_backup` has been created as a copy of `all_data`. We can
574 move files around using the command `mv`. Enter this command:
575
576     mv all_data_backup /tmp/
577
578 This moves `all_data_backup` into the directory `/tmp`. The directory
579 `/tmp` is a special directory that all users can write to. It is a
580 temporary place for storing files. Data stored in `/tmp` is
581 automatically deleted when the computer shuts down.
582
583 The `mv` command is also how you rename files. Since this file is so
584 important, let's rename it:
585
586     mv all_data all_data_IMPORTANT
587
588 Now the file name has been changed to all_data_IMPORTANT. Let's delete
589 the backup file now:
590
591     rm /tmp/all_data_backup
592
593 The `mkdir` command is used to create a directory. Just enter `mkdir`
594 followed by a space, then the directory name. 
595
596 * * * *
597 **Short Exercise**
598
599 Do the following:
600
601 1.  Rename the `all_data_IMPORTANT` file to `all_data`.
602 2.  Create a directory in the `data` directory called `foo`
603 3.  Then, copy the `all_data` file into `foo`
604
605 * * * *
606
607 By default, `rm`, will NOT delete directories. You can tell `rm` to
608 delete a directory using the `-r` option. Enter the following command:
609
610     rm -r foo
611
612
613 ## Count the words
614
615 The `wc` program (word count) counts the number of lines, words, and
616 characters in one or more files. Make sure you are in the `data`
617 directory, then enter the following command:
618
619     wc Bert/* gerdal/*4*
620
621 For each of the files indicated, `wc` has printed a line with three
622 numbers. The first is the number of lines in that file. The second is
623 the number of words. Finally, the total number of characters is
624 indicated. The final line contains this information summed over all of
625 the files. Thus, there were 10445 characters in total. 
626
627 Remember that the `Bert/*` and `gerdal/*4*` files were merged
628 into the `all_data` file. So, we should see that `all_data` contains
629 the same number of characters:
630
631     wc all_data
632
633 Every character in the file takes up one byte of disk space. Thus, the
634 size of the file in bytes should also be 10445. Let's confirm this:
635
636     ls -l all_data
637
638 Remember that `ls -l` prints out detailed information about a file and
639 that the fifth column is the size of the file in bytes.
640
641 * * * *
642 **Short Exercise**
643
644 Figure out how to get `wc` to print the length of the longest line in
645 `all_data`.
646
647 * * * *
648
649 ## The awesome power of the Pipe
650
651 Suppose I wanted to only see the total number of character, words, and
652 lines across the files `Bert/*` and `gerdal/*4*`. I don't want to
653 see the individual counts, just the total. Of course, I could just do:
654
655     wc all_data
656
657 Since this file is a concatenation of the smaller files. Sure, this
658 works, but I had to create the `all_data` file to do this. Thus, I
659 have wasted a precious 7062 bytes of hard disk space. We can do this
660 *without* creating a temporary file, but first I have to show you two
661 more commands: `head` and `tail`. These commands print the first few,
662 or last few, lines of a file, respectively. Try them out on
663 `all_data`:
664
665     head all_data
666     tail all_data
667
668 The `-n` option to either of these commands can be used to print the
669 first or last `n` lines of a file. To print the first/last line of the
670 file use:
671
672     head -n 1 all_data
673     tail -n 1 all_data
674
675 Let's turn back to the problem of printing only the total number of
676 lines in a set of files without creating any temporary files. To do
677 this, we want to tell the shell to take the output of the `wc Bert/*
678 gerdal/*4*` and send it into the `tail -n 1` command. The `|`
679 character (called pipe) is used for this purpose. Enter the following
680 command:
681
682     wc Bert/* gerdal/Data0559 | tail -n 1
683
684 This will print only the total number of lines, characters, and words
685 across all of these files. What is happening here? Well, `tail`, like
686 many command line programs will read from the *standard input* when it
687 is not given any files to operate on. In this case, it will just sit
688 there waiting for input. That input can come from the user's keyboard
689 *or from another program*. Try this:
690
691     tail -n 2
692
693 Notice that your cursor just sits there blinking. Tail is waiting for
694 data to come in. Now type:
695
696     French
697     fries
698     are
699     good
700
701 then CONTROL+d. You should is the lines:
702
703     are
704     good
705
706 printed back at you. The CONTROL+d keyboard shortcut inserts an
707 *end-of-file* character. It is sort of the standard way of telling the
708 program "I'm done entering data". The `|` character is replaces the
709 data from the keyboard with data from another command. You can string
710 all sorts of commands together using the pipe. 
711
712 The philosophy behind these command line programs is that none of them
713 really do anything all that impressive. BUT when you start chaining
714 them together, you can do some really powerful things really
715 efficiently. If you want to be proficient at using the shell, you must
716 learn to become proficient with the pipe and redirection operators:
717 `|`, `>`, `>>`.
718
719
720 **A sorting example**
721
722 Let's create a file with some words to sort for the next example. We
723 want to create a file which contains the following names:
724
725     Bob
726     Alice
727     Diane
728     Charles
729
730 To do this, we need a program which allows us to create text
731 files. There are many such programs, the easiest one which is
732 installed on almost all systems is called `nano`. Navigate to `/tmp`
733 and enter the following command:
734
735     nano toBeSorted
736
737 Now enter the four names as shown above. When you are done, press
738 CONTROL+O to write out the file. Press enter to use the file name
739 `toBeSorted`. Then press CONTROL+x to exit `nano`.
740
741 When you are back to the command line, enter the command:
742
743     sort toBeSorted
744
745 Notice that the names are now printed in alphabetical order.
746
747 * * * *
748 **Short Exercise**
749
750 Use the `echo` command and the append operator, `>>`, to append your
751 name to the file, then sort it and make a new file called Sorted.
752
753 * * * *
754
755 Let's navigate back to `~/boot-camps/shell/data`. Enter the following command:
756
757     wc Bert/* | sort -k 3 -n
758
759 We are already familiar with what the first of these two commands
760 does: it creates a list containing the number of characters, words,
761 and lines in each file in the `Bert` directory. This list is then
762 piped into the `sort` command, so that it can be sorted. Notice there
763 are two options given to sort:
764
765 1.  `-k 3`: Sort based on the third column
766 2.  `-n`: Sort in numerical order as opposed to alphabetical order
767
768 Notice that the files are sorted by the number of characters.
769
770 * * * *
771 **Short Exercise**
772
773 Use the `man` command to find out how to sort the output from `wc` in
774 reverse order.
775
776 * * * *
777
778 * * * * 
779 **Short Exercise**
780
781 Combine the `wc`, `sort`, `head` and `tail` commands so that only the
782 `wc` information for the largest file is listed
783
784 Hint: To print the smallest file, use:
785
786     wc Bert/* | sort -k 3 -n | head -n 1
787
788 * * * * 
789
790 Printing the smallest file seems pretty useful. We don't want to type
791 out that long command often. Let's create a simple script, a simple
792 program, to run this command. The program will look at all of the
793 files in the current directory and print the information about the
794 smallest one. Let's call the script `smallest`. We'll use `nano` to
795 create this file. Navigate to the `data` directory, then:
796
797     nano smallest
798
799 Then enter the following text:
800
801     #!/bin/bash
802     wc * | sort -k 3 -n | head -n 1
803
804 Now, `cd` into the `Bert` directory and enter the command
805 `../smallest`. Notice that it says permission denied. This happens
806 because we haven't told the shell that this is an executable
807 file. If you do `ls -l ../smallest`, it will show you the permissions on 
808 the left of the listing.
809
810 Enter the following commands:
811
812     chmod a+x ../smallest
813     ../smallest
814
815 The `chmod` command is used to modify the permissions of a file. This
816 particular command modifies the file `../smallest` by giving all users
817 (notice the `a`) permission to execute (notice the `x`) the file. If
818 you enter:
819
820     ls -l ../smallest
821
822 You will see that the file name is green and the permissions have changed. 
823 Congratulations, you just created your first shell script!
824
825 # Searching files
826
827 You can search the contents of a file using the command `grep`. The
828 `grep` program is very powerful and useful especially when combined
829 with other commands by using the pipe. Navigate to the `Bert`
830 directory. Every data file in this directory has a line which says
831 "Range". The range represents the smallest frequency range that can be
832 discriminated. Lets list all of the ranges from the tests that Bert
833 conducted:
834
835     grep Range *
836
837 * * * * 
838 **Short Exercise**
839
840 Create an executable script called `smallestrange` in the `data`
841 directory, that is similar to the `smallest` script, but prints the
842 file containing the file with the smallest Range. Use the commands
843 `grep`, `sort`, and `tail` to do this.
844
845 * * * * 
846
847
848 # Finding files
849
850 The `find` program can be used to find files based on arbitrary
851 criteria. Navigate to the `data` directory and enter the following
852 command:
853
854     find . -print
855
856 This prints the name of every file or directory, recursively, starting
857 from the current directory. Let's exclude all of the directories:
858
859     find . -type f -print
860
861 This tells `find` to locate only files. Now try these commands:
862
863     find . -type f -name "*1*"
864     find . -type f -name "*1*" -or -name "*2*" -print
865     find . -type f -name "*1*" -and -name "*2*" -print
866
867 The `find` command can acquire a list of files and perform some
868 operation on each file. Try this command out:
869
870     find . -type f -exec grep Volume {} \;
871
872 This command finds every file starting from `.`. Then it searches each
873 file for a line which contains the word "Volume". The `{}` refers to
874 the name of each file. The trailing `\;` is used to terminate the
875 command.  This command is slow, because it is calling a new instance
876 of `grep` for each item the `find` returns.
877
878 A faster way to do this is to use the `xargs` command:
879
880     find . -type f -print | xargs grep Volume
881
882 `find` generates a list of all the files we are interested in, 
883 then we pipe them to `xargs`.  `xargs` takes the items given to it 
884 and passes them as arguments to `grep`.  `xargs` generally only creates
885 a single instance of `grep` (or whatever program it is running).
886
887 * * * * 
888 **Short Exercise**
889
890 Navigate to the `data` directory. Use one `find` command to perform each
891 of the operations listed below (except number 2, which does not
892 require a `find` command):
893
894 1.  Find any file whose name is "NOTES" within `data` and delete it 
895
896 2.  Create a new directory called `cleaneddata`
897
898 3.  Move all of the files within `data` to the `cleaneddata` directory
899
900 4.  Rename all of the files to ensure that they end in `.txt` (note:
901     it is ok for the file name to end in `.txt.txt`
902
903 Hint: If you make a mistake and need to start over just do the
904 following:
905
906 1.  Navigate to the `shell` directory
907
908 2.  Delete the `data` directory
909
910 3.  Enter the command: `git checkout -- data` You should see that the
911     data directory has reappeared in its original state
912
913 **BONUS**
914
915 Redo exercise 4, except rename only the files which do not already end
916 in `.txt`. You will have to use the `man` command to figure out how to
917 search for files which do not match a certain name. 
918
919 * * * * 
920
921
922
923 ## Bonus:
924
925 **backtick, xargs**: Example find all files with certain text
926
927 **alias** -> rm -i
928
929 **variables** -> use a path example
930
931 **.bashrc**
932
933 **du**
934
935 **ln**
936
937 **ssh and scp**
938
939 **Regular Expressions**
940
941 **Permissions**
942
943 **Chaining commands together**