forked from bcaffo/courses
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
838 lines (739 loc) · 21.7 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
<!DOCTYPE html>
<html>
<head>
<title>Introduction to the Command Line Interface</title>
<meta charset="utf-8">
<meta name="description" content="Introduction to the Command Line Interface">
<meta name="author" content="Jeffrey Leek">
<meta name="generator" content="slidify" />
<meta name="apple-mobile-web-app-capable" content="yes">
<meta http-equiv="X-UA-Compatible" content="chrome=1">
<link rel="stylesheet" href="../../librariesNew/frameworks/io2012/css/default.css" media="all" >
<link rel="stylesheet" href="../../librariesNew/frameworks/io2012/css/phone.css"
media="only screen and (max-device-width: 480px)" >
<link rel="stylesheet" href="../../librariesNew/frameworks/io2012/css/slidify.css" >
<link rel="stylesheet" href="../../librariesNew/highlighters/highlight.js/css/tomorrow.css" />
<base target="_blank"> <!-- This amazingness opens all links in a new tab. -->
<!-- Grab CDN jQuery, fall back to local if offline -->
<script src="http://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.7.min.js"></script>
<script>window.jQuery || document.write('<script src="../../librariesNew/widgets/quiz/js/jquery.js"><\/script>')</script>
<script data-main="../../librariesNew/frameworks/io2012/js/slides"
src="../../librariesNew/frameworks/io2012/js/require-1.0.8.min.js">
</script>
</head>
<body style="opacity: 0">
<slides class="layout-widescreen">
<!-- LOGO SLIDE -->
<slide class="title-slide segue nobackground">
<aside class="gdbar">
<img src="../../assets/img/bloomberg_shield.png">
</aside>
<hgroup class="auto-fadein">
<h1>Introduction to the Command Line Interface</h1>
<h2></h2>
<p>Jeffrey Leek<br/>Johns Hopkins Bloomberg School of Public Health</p>
</hgroup>
<article></article>
</slide>
<!-- SLIDES -->
<slide class="" id="slide-1" style="background:;">
<hgroup>
<h2>What is the Command Line Interface?</h2>
</hgroup>
<article data-timings="">
<p>Nearly ever computer comes with a CLI</p>
<ul>
<li>Windows: Git Bash (See "Introduction to Git")</li>
<li>Mac/Linux: Terminal</li>
</ul>
</article>
<!-- Presenter Notes -->
</slide>
<slide class="" id="slide-2" style="background:;">
<hgroup>
<h2>What can the CLI do?</h2>
</hgroup>
<article data-timings="">
<p>The CLI can help you:</p>
<ul>
<li>Navigate folders</li>
<li>Create files, folders, and programs</li>
<li>Edit files, folders, and programs</li>
<li>Run computer programs</li>
</ul>
</article>
<!-- Presenter Notes -->
</slide>
<slide class="" id="slide-3" style="background:;">
<hgroup>
<h2>Basics of Directories</h2>
</hgroup>
<article data-timings="">
<ul>
<li>"Directory" is just another name for folder</li>
<li>Directories on your computer are organized like a tree</li>
<li>Directories can be inside other directories</li>
<li>We can navigate directories using the CLI</li>
</ul>
<p><img class=center src=../../assets/img/IntroToCLI/musictree1.png height='350'/></p>
</article>
<!-- Presenter Notes -->
</slide>
<slide class="" id="slide-4" style="background:;">
<hgroup>
<h2>Basics of Directories</h2>
</hgroup>
<article data-timings="">
<ul>
<li>My "Debussy" directory is contained inside of my "Music" directory</li>
</ul>
<p><img class=center src=../../assets/img/IntroToCLI/musictree2.png height='350'/></p>
</article>
<!-- Presenter Notes -->
</slide>
<slide class="" id="slide-5" style="background:;">
<hgroup>
<h2>Basics of Directories</h2>
</hgroup>
<article data-timings="">
<ul>
<li>One directory "up" from my Debussy directory is my Music directory</li>
</ul>
<p><img class=center src=../../assets/img/IntroToCLI/musictree3.png height='350'/></p>
</article>
<!-- Presenter Notes -->
</slide>
<slide class="" id="slide-6" style="background:;">
<hgroup>
<h2>Your computer's directory structure</h2>
</hgroup>
<article data-timings="">
<ul>
<li>The directory structure on your computer looks something like this</li>
</ul>
<p><img class=center src=../../assets/img/IntroToCLI/bigtree1.png height='350'/></p>
</article>
<!-- Presenter Notes -->
</slide>
<slide class="" id="slide-7" style="background:;">
<hgroup>
<h2>Special directories: root</h2>
</hgroup>
<article data-timings="">
<ul>
<li>The directory at the top of the tree is called the root directory</li>
<li>The root directory contains all other directories</li>
<li>The name of this directory is represented by a slash: <code>/</code></li>
</ul>
<p><img class=center src=../../assets/img/IntroToCLI/bigtree2.png height='350'/></p>
</article>
<!-- Presenter Notes -->
</slide>
<slide class="" id="slide-8" style="background:;">
<hgroup>
<h2>Special directories: home</h2>
</hgroup>
<article data-timings="">
<ul>
<li>Your home directory is represented by a tilde: <code>~</code></li>
<li>Your home directory usually contains most of your personal files, pictures, music, etc.</li>
<li>The name of your home directory is usually the name you use to log into your computer</li>
</ul>
<p><img class=center src=../../assets/img/IntroToCLI/bigtree3.png height='350'/></p>
</article>
<!-- Presenter Notes -->
</slide>
<slide class="" id="slide-9" style="background:;">
<hgroup>
<h2>Navigating directories with the CLI</h2>
</hgroup>
<article data-timings="">
<p>Windows users:</p>
<ul>
<li>Open the start menu</li>
<li>Search for Git Bash</li>
<li>Open Git Bash</li>
</ul>
<p><img class=center src=../../assets/img/IntroToCLI/startmenu.png height='250'/></p>
</article>
<!-- Presenter Notes -->
</slide>
<slide class="" id="slide-10" style="background:;">
<hgroup>
<h2>Navigating directories with the CLI</h2>
</hgroup>
<article data-timings="">
<p>Mac users:</p>
<ul>
<li>Open Spotlight</li>
<li>Search Terminal</li>
<li>Open Terminal</li>
</ul>
<p><img class=center src=../../assets/img/IntroToCLI/spotlight.png height='250'/></p>
</article>
<!-- Presenter Notes -->
</slide>
<slide class="" id="slide-11" style="background:;">
<hgroup>
<h2>CLI Basics</h2>
</hgroup>
<article data-timings="">
<ul>
<li>When you open your CLI you will see your prompt, which will looks something like the name of your computer, followed by your username, followed by a <code>$</code></li>
<li>When you open your CLI you start in your home directory.</li>
<li>Whatever directory you're currently working with in your CLI is called the "working directory"</li>
</ul>
<p><img class=center src=../../assets/img/IntroToCLI/bash1.png height=100%/></p>
</article>
<!-- Presenter Notes -->
</slide>
<slide class="" id="slide-12" style="background:;">
<hgroup>
<h2>CLI Basics</h2>
</hgroup>
<article data-timings="">
<ul>
<li>You can imagine tracing all of the directories from your root directory to the directory you're currently in. </li>
<li>This is called the "path" to your working directory. </li>
</ul>
<p><img class=center src=../../assets/img/IntroToCLI/redtree.png height='350'/></p>
</article>
<!-- Presenter Notes -->
</slide>
<slide class="" id="slide-13" style="background:;">
<hgroup>
<h2>CLI Basics</h2>
</hgroup>
<article data-timings="">
<ul>
<li>In your CLI prompt, type <code>pwd</code> and press enter.</li>
<li>This will display the path to your working directory.</li>
<li>As you can see we get the prompt back after entering a command.</li>
</ul>
<p><img class=center src=../../assets/img/IntroToCLI/pwd.png height=100%/></p>
</article>
<!-- Presenter Notes -->
</slide>
<slide class="" id="slide-14" style="background:;">
<hgroup>
<h2>CLI Commands</h2>
</hgroup>
<article data-timings="">
<ul>
<li>You use the CLI prompt by typing in a command and pressing enter.</li>
<li><code>pwd</code> can be used at any time to display the path to your working directory (<code>pwd</code> is an abbreviation for "print working directory")</li>
</ul>
</article>
<!-- Presenter Notes -->
</slide>
<slide class="" id="slide-15" style="background:;">
<hgroup>
<h2>CLI Commands</h2>
</hgroup>
<article data-timings="">
<ul>
<li>CLI commands follow this recipe: <strong><em>command flags arguments</em></strong></li>
<li><strong><em>command</em></strong> is the CLI command which does a specific task</li>
<li><strong><em>flags</em></strong> are options we give to the <strong><em>command</em></strong> to trigger certain behaviors, preceded by a <code>-</code></li>
<li><strong><em>arguments</em></strong> can be what the <strong><em>command</em></strong> is going to modify, or other options for the <strong><em>command</em></strong></li>
<li>Depending on the <strong><em>command</em></strong>, there can be zero or more <strong><em>flags</em></strong> and <strong><em>arguments</em></strong></li>
<li>For example <code>pwd</code> is a <strong><em>command</em></strong> that requires no <strong><em>flags</em></strong> or <strong><em>arguments</em></strong></li>
</ul>
</article>
<!-- Presenter Notes -->
</slide>
<slide class="" id="slide-16" style="background:;">
<hgroup>
<h2>CLI Commands</h2>
</hgroup>
<article data-timings="">
<ul>
<li><code>pwd</code> displays the path to the current working directory</li>
</ul>
<pre><code class="bash">jeff$ pwd
/Users/jeff
jeff$
</code></pre>
</article>
<!-- Presenter Notes -->
</slide>
<slide class="" id="slide-17" style="background:;">
<hgroup>
<h2>CLI Commands</h2>
</hgroup>
<article data-timings="">
<ul>
<li><code>clear</code> will clear out the commands in your current CLI window</li>
</ul>
<pre><code class="bash">jeff$ pwd
/Users/jeff
jeff$ clear
</code></pre>
<pre><code class="bash">jeff$
</code></pre>
</article>
<!-- Presenter Notes -->
</slide>
<slide class="" id="slide-18" style="background:;">
<hgroup>
<h2>CLI Commands</h2>
</hgroup>
<article data-timings="">
<ul>
<li><code>ls</code> lists files and folders in the current directory</li>
<li><code>ls -a</code> lists hidden and unhidden files and folders</li>
<li><code>ls -al</code> lists details for hidden and unhidden files and folders</li>
<li>Notice that <code>-a</code> and <code>-l</code> are flags (they're preceded by a <code>-</code>)</li>
<li>They can be combined into the flag: <code>-al</code></li>
</ul>
<pre><code class="bash">jeff$ ls
Desktop Photos Music
jeff$ ls -a
Desktop Photos Music .Trash .DS_Store
jeff$
</code></pre>
</article>
<!-- Presenter Notes -->
</slide>
<slide class="" id="slide-19" style="background:;">
<hgroup>
<h2>CLI Commands</h2>
</hgroup>
<article data-timings="">
<ul>
<li><code>cd</code> stands for "change directory"</li>
<li><code>cd</code> takes as an argument the directory you want to visit</li>
<li><code>cd</code> with no argument takes you to your home directory</li>
<li><code>cd ..</code> allows you to change directory to one level above your current directory</li>
</ul>
<pre><code class="bash">jeff$ cd Music/Debussy
jeff$ pwd
/Users/jeff/Music/Debussy
jeff$ cd ..
jeff$ pwd
/Users/jeff/Music
jeff$ cd
jeff$ pwd
/Users/jeff
jeff$
</code></pre>
</article>
<!-- Presenter Notes -->
</slide>
<slide class="" id="slide-20" style="background:;">
<hgroup>
<h2>CLI Commands</h2>
</hgroup>
<article data-timings="">
<ul>
<li><code>mkdir</code> stands for "make directory"</li>
<li>Just like: right click -> create new folder</li>
<li><code>mkdir</code> takes as an argument the name of the directory you're creating </li>
</ul>
<pre><code class="bash">jeff$ mkdir Documents
jeff$ ls
Desktop Photos Music Documents
jeff$ cd Documents
jeff$ pwd
/Users/jeff/Documents
jeff$ cd
jeff$
</code></pre>
</article>
<!-- Presenter Notes -->
</slide>
<slide class="" id="slide-21" style="background:;">
<hgroup>
<h2>CLI Commands</h2>
</hgroup>
<article data-timings="">
<ul>
<li><code>touch</code> creates an empty file</li>
</ul>
<pre><code class="bash">jeff$ touch test_file
jeff$ ls
Desktop Photos Music Documents test_file
jeff$
</code></pre>
</article>
<!-- Presenter Notes -->
</slide>
<slide class="" id="slide-22" style="background:;">
<hgroup>
<h2>CLI Commands</h2>
</hgroup>
<article data-timings="">
<ul>
<li><code>cp</code> stands for "copy"</li>
<li><code>cp</code> takes as its first argument a file, and as its second argument the path to where you want the file to be copied</li>
</ul>
<pre><code class="bash">jeff$ cp test_file Documents
jeff$ cd Documents
jeff$ ls
test_file
jeff$ cd ..
jeff$
</code></pre>
</article>
<!-- Presenter Notes -->
</slide>
<slide class="" id="slide-23" style="background:;">
<hgroup>
<h2>CLI Commands</h2>
</hgroup>
<article data-timings="">
<ul>
<li><code>cp</code> can also be used for copying the contents of directories, but you must use the <code>-r</code> flag</li>
<li>The line: <code>cp -r Documents More_docs</code> copies the contents of <code>Documents</code> into <code>More_docs</code></li>
</ul>
<pre><code class="bash">jeff$ mkdir More_docs
jeff$ cp -r Documents More_docs
jeff$ cd More_docs
jeff$ ls
test_file
jeff$ cd ..
jeff$
</code></pre>
</article>
<!-- Presenter Notes -->
</slide>
<slide class="" id="slide-24" style="background:;">
<hgroup>
<h2>CLI Commands</h2>
</hgroup>
<article data-timings="">
<ul>
<li><code>rm</code> stands for "remove"</li>
<li><code>rm</code> takes the name of a file you wish to remove as its argument</li>
</ul>
<pre><code class="bash">jeff$ ls
Desktop Photos Music Documents More_docs test_file
jeff$ rm test_file
jeff$ ls
Desktop Photos Music Documents More_docs
jeff$
</code></pre>
</article>
<!-- Presenter Notes -->
</slide>
<slide class="" id="slide-25" style="background:;">
<hgroup>
<h2>CLI Commands</h2>
</hgroup>
<article data-timings="">
<ul>
<li>You can also use <code>rm</code> to delete entire directories and their contents by using the <code>-r</code> flag</li>
<li><strong>Be very careful when you do this, there is no way to undo an <code>rm</code></strong></li>
</ul>
<pre><code class="bash">jeff$ ls
Desktop Photos Music Documents More_docs
jeff$ rm -r More_docs
jeff$ ls
Desktop Photos Music Documents
jeff$
</code></pre>
</article>
<!-- Presenter Notes -->
</slide>
<slide class="" id="slide-26" style="background:;">
<hgroup>
<h2>CLI Commands</h2>
</hgroup>
<article data-timings="">
<ul>
<li><code>mv</code> stands for "move"</li>
<li>With <code>mv</code> you can move files between directories</li>
</ul>
<pre><code class="bash">jeff$ touch new_file
jeff$ mv new_file Documents
jeff$ ls
Desktop Photos Music Documents
jeff$ cd Documents
jeff$ ls
test_file new_file
jeff$
</code></pre>
</article>
<!-- Presenter Notes -->
</slide>
<slide class="" id="slide-27" style="background:;">
<hgroup>
<h2>CLI Commands</h2>
</hgroup>
<article data-timings="">
<ul>
<li>You can also use <code>mv</code> to rename files</li>
</ul>
<pre><code class="bash">jeff$ ls
test_file new_file
jeff$ mv new_file renamed_file
jeff$ ls
test_file renamed_file
jeff$
</code></pre>
</article>
<!-- Presenter Notes -->
</slide>
<slide class="" id="slide-28" style="background:;">
<hgroup>
<h2>CLI Commands</h2>
</hgroup>
<article data-timings="">
<ul>
<li><code>echo</code> will print whatever arguments you provide</li>
</ul>
<pre><code class="bash">jeff$ echo Hello World!
Hello World!
jeff$
</code></pre>
</article>
<!-- Presenter Notes -->
</slide>
<slide class="" id="slide-29" style="background:;">
<hgroup>
<h2>CLI Commands</h2>
</hgroup>
<article data-timings="">
<ul>
<li><code>date</code> will print today's date</li>
</ul>
<pre><code class="bash">jeff$ date
Mon Nov 4 20:48:03 EST 2013
jeff$
</code></pre>
</article>
<!-- Presenter Notes -->
</slide>
<slide class="" id="slide-30" style="background:;">
<hgroup>
<h2>Summary of Commands</h2>
</hgroup>
<article data-timings="">
<ul>
<li><code>pwd</code></li>
<li><code>clear</code></li>
<li><code>ls</code></li>
<li><code>cd</code></li>
<li><code>mkdir</code></li>
<li><code>touch</code></li>
<li><code>cp</code></li>
<li><code>rm</code></li>
<li><code>mv</code></li>
<li><code>date</code></li>
<li><code>echo</code></li>
</ul>
</article>
<!-- Presenter Notes -->
</slide>
<slide class="backdrop"></slide>
</slides>
<div class="pagination pagination-small" id='io2012-ptoc' style="display:none;">
<ul>
<li>
<a href="#" target="_self" rel='tooltip'
data-slide=1 title='What is the Command Line Interface?'>
1
</a>
</li>
<li>
<a href="#" target="_self" rel='tooltip'
data-slide=2 title='What can the CLI do?'>
2
</a>
</li>
<li>
<a href="#" target="_self" rel='tooltip'
data-slide=3 title='Basics of Directories'>
3
</a>
</li>
<li>
<a href="#" target="_self" rel='tooltip'
data-slide=4 title='Basics of Directories'>
4
</a>
</li>
<li>
<a href="#" target="_self" rel='tooltip'
data-slide=5 title='Basics of Directories'>
5
</a>
</li>
<li>
<a href="#" target="_self" rel='tooltip'
data-slide=6 title='Your computer's directory structure'>
6
</a>
</li>
<li>
<a href="#" target="_self" rel='tooltip'
data-slide=7 title='Special directories: root'>
7
</a>
</li>
<li>
<a href="#" target="_self" rel='tooltip'
data-slide=8 title='Special directories: home'>
8
</a>
</li>
<li>
<a href="#" target="_self" rel='tooltip'
data-slide=9 title='Navigating directories with the CLI'>
9
</a>
</li>
<li>
<a href="#" target="_self" rel='tooltip'
data-slide=10 title='Navigating directories with the CLI'>
10
</a>
</li>
<li>
<a href="#" target="_self" rel='tooltip'
data-slide=11 title='CLI Basics'>
11
</a>
</li>
<li>
<a href="#" target="_self" rel='tooltip'
data-slide=12 title='CLI Basics'>
12
</a>
</li>
<li>
<a href="#" target="_self" rel='tooltip'
data-slide=13 title='CLI Basics'>
13
</a>
</li>
<li>
<a href="#" target="_self" rel='tooltip'
data-slide=14 title='CLI Commands'>
14
</a>
</li>
<li>
<a href="#" target="_self" rel='tooltip'
data-slide=15 title='CLI Commands'>
15
</a>
</li>
<li>
<a href="#" target="_self" rel='tooltip'
data-slide=16 title='CLI Commands'>
16
</a>
</li>
<li>
<a href="#" target="_self" rel='tooltip'
data-slide=17 title='CLI Commands'>
17
</a>
</li>
<li>
<a href="#" target="_self" rel='tooltip'
data-slide=18 title='CLI Commands'>
18
</a>
</li>
<li>
<a href="#" target="_self" rel='tooltip'
data-slide=19 title='CLI Commands'>
19
</a>
</li>
<li>
<a href="#" target="_self" rel='tooltip'
data-slide=20 title='CLI Commands'>
20
</a>
</li>
<li>
<a href="#" target="_self" rel='tooltip'
data-slide=21 title='CLI Commands'>
21
</a>
</li>
<li>
<a href="#" target="_self" rel='tooltip'
data-slide=22 title='CLI Commands'>
22
</a>
</li>
<li>
<a href="#" target="_self" rel='tooltip'
data-slide=23 title='CLI Commands'>
23
</a>
</li>
<li>
<a href="#" target="_self" rel='tooltip'
data-slide=24 title='CLI Commands'>
24
</a>
</li>
<li>
<a href="#" target="_self" rel='tooltip'
data-slide=25 title='CLI Commands'>
25
</a>
</li>
<li>
<a href="#" target="_self" rel='tooltip'
data-slide=26 title='CLI Commands'>
26
</a>
</li>
<li>
<a href="#" target="_self" rel='tooltip'
data-slide=27 title='CLI Commands'>
27
</a>
</li>
<li>
<a href="#" target="_self" rel='tooltip'
data-slide=28 title='CLI Commands'>
28
</a>
</li>
<li>
<a href="#" target="_self" rel='tooltip'
data-slide=29 title='CLI Commands'>
29
</a>
</li>
<li>
<a href="#" target="_self" rel='tooltip'
data-slide=30 title='Summary of Commands'>
30
</a>
</li>
</ul>
</div> <!--[if IE]>
<script
src="http://ajax.googleapis.com/ajax/libs/chrome-frame/1/CFInstall.min.js">
</script>
<script>CFInstall.check({mode: 'overlay'});</script>
<![endif]-->
</body>
<!-- Load Javascripts for Widgets -->
<!-- MathJax: Fall back to local if CDN offline but local image fonts are not supported (saves >100MB) -->
<script type="text/x-mathjax-config">
MathJax.Hub.Config({
tex2jax: {
inlineMath: [['$','$'], ['\\(','\\)']],
processEscapes: true
}
});
</script>
<script type="text/javascript" src="http://cdn.mathjax.org/mathjax/2.0-latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>
<!-- <script src="https://c328740.ssl.cf1.rackcdn.com/mathjax/2.0-latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML">
</script> -->
<script>window.MathJax || document.write('<script type="text/x-mathjax-config">MathJax.Hub.Config({"HTML-CSS":{imageFont:null}});<\/script><script src="../../librariesNew/widgets/mathjax/MathJax.js?config=TeX-AMS-MML_HTMLorMML"><\/script>')
</script>
<!-- LOAD HIGHLIGHTER JS FILES -->
<script src="../../librariesNew/highlighters/highlight.js/highlight.pack.js"></script>
<script>hljs.initHighlightingOnLoad();</script>
<!-- DONE LOADING HIGHLIGHTER JS FILES -->
</html>