-
Notifications
You must be signed in to change notification settings - Fork 129
/
index.html
executable file
·839 lines (630 loc) · 11 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
839
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>像黑客一样使用 Linux 命令行</title>
<link rel="stylesheet" href="http://fonts.googleapis.com/css?family=Anonymous+Pro:400,700,400italic,700italic">
<link rel="stylesheet" href="css/default.css" media="screen">
</head>
<body>
<textarea id="source">
class: center, middle, inverse
# 像黑客一样使用
```
_ _
| | (_)
| | _ _ __ _ ___ __
| | | | '_ \| | | \ \/ /
| |____| | | | | |_| |> <
|______|_|_| |_|\__,_/_/\_\
```
## 命令行
```
toy
2014.3.30
```
---
class: inverse
## 我喜欢使用命令行的原因
###
- 功能强大
```
% history |
> awk '{CMD[$2]++;count++;}END \
> { for (a in CMD)print CMD[a] " " \
> CMD[a]/count*100 "% " a;}' |
> grep -v "./" |
> column -c3 -s " " -t |
> sort -nr |
> nl |
> head -n10
```
---
class: inverse
## 我喜欢使用命令行的原因
###
```
1 181 8.0516% ls
2 174 7.74021% git
3 167 7.42883% cd
4 163 7.25089% jq
5 154 6.85053% l
6 137 6.09431% vim
7 102 4.53737% rm
8 59 2.62456% ll
9 52 2.31317% echo
10 49 2.17972% ssh
```
([source](http://linux.byexamples.com/archives/332/what-is-your-10-common-linux-commands/))
---
class: inverse
## 我喜欢使用命令行的原因
###
- 灵活高效
```
% cd photos
% ls -l | grep Mar
```
---
class: inverse
## 我喜欢使用命令行的原因
###
- 能自动化
```
% ./script.sh
```
---
class: center, middle, inverse
## 魔法即将启幕......
---
class: center, middle, inverse
![Magic](img/unix-magic.jpg)
---
class: inverse
## 人非圣贤,孰能无过?
###
- 重新输入,然后执行
- 稍加编辑,再来执行
- ?
---
class: inverse
## 人非圣贤,孰能无过?
###
- 使用 ^ 删掉多余部分
```
% grep fooo /var/log/auth.log
% ^o
% grep foo /var/log/auth.log
```
---
class: inverse
## 人非圣贤,孰能无过?
###
- 使用 ^old^new 换掉输错或输少的部分
```
% cat myflie
% ^li^il
% cat myfile
% ansible vod -m command -a 'uptim'
% ^im^ime
% ansible vod -m command -a 'uptime'
```
---
class: inverse
## 人非圣贤,孰能无过?
###
- 使用 !:gs/old/new 将 old 全部换成 new
```
% ansible nginx -m command -a 'which nginx'
% !:gs/nginx/squid
% ansible squid -m command -a 'which squid'
% ^nginx^squid^:G # zsh
```
---
class: inverse
## 人非圣贤,孰能无过?
###
#### 要记住的是:
- 一删
- 二换
- 三全变
---
class: inverse
## 忘记历史,就是背叛。
###
- 了解历史记录的大小
```
% echo $HISTSIZE
1000
```
- 历史记录的保存位置
```
% echo $HISTFILE
/home/xiaodong/.zhistory
```
- 历史记录的保存大小
```
% echo $HISTFILESIZE # bash
1000
% echo $SAVEHIST # zsh
1000
```
---
class: inverse
## 忘记历史,就是背叛。
###
- 查看历史
```
% history
% history | less
1 hist
2 ./code/gs/update_system.pl -n
3 emerge -C chromium
4 emerge @preserved-rebuild
5* df -h
......
% history 5
% history | grep string
```
---
class: inverse
## 忘记历史,就是背叛。
###
- 使用 Ctrl + r 逆向搜索历史命令
```
%
(reverse-i-search)`h': history 5
```
- 使用 Ctrl + p 访问上一条命令
```
% history 5
[Ctrl + p]
```
- 使用 Ctrl + n 访问下一条命令
```
%
[Ctrl + n]
```
---
class: inverse
## 忘记历史,就是背叛。
###
- 使用 !! 执行上一条命令
```
% !!
% sudo !!
% apt-get install figlet
E: Could not open lock file /var/lib/dpkg/lock - open (13: Permission denied)
E: Unable to lock the administration directory (/var/lib/dpkg/), are you root?
% sudo !!
sudo apt-get install figlet
```
---
class: inverse
## 忘记历史,就是背叛。
###
- 使用 !foo 执行以 foo 开头的命令
```
% !his
history
```
---
class: inverse
## 忘记历史,就是背叛。
###
- 使用 !?foo 执行包含 foo 的命令
```
% !?is
echo $histchars
```
---
class: inverse
## 忘记历史,就是背叛。
###
- 使用 !n 执行第 n 个命令
```
% !10
vim lib/TunePage.pm
```
---
class: inverse
## 忘记历史,就是背叛。
###
- 使用 !-n 执行倒数第 n 个命令
```
% !-2
htop
% !-1 == !!
```
- Tip: 给命令提示符中增加历史命令编号
```
% export PS1='!\! \u@\h:\w\$ '
!998 xiaodong@codetoy:~$
```
---
class: inverse
## 忘记历史,就是背叛。
###
- 使用 !# 引用当前行
```
% cp filename filename.old
% cp filename !#:1.old
```
---
class: inverse
## 忘记历史,就是背叛。
###
#### 关于历史引用,要记住的是:
- !!
- ![?]字符串
- ![-]数字
- !#
---
class: inverse
## 忘记历史,就是背叛。
###
- 历史命令 Word 选取图
![history words](img/hist-word.png)
---
class: inverse
## 忘记历史,就是背叛。
###
- 通过 !$ 得到上一条命令的最后一位参数
```
% mkdir videos
% cd !$
%
[Alt + .]
```
---
class: inverse
## 忘记历史,就是背叛。
###
- 通过 !^ 得到上一条命令的第一个参数
```
% ls /usr/share/doc /usr/share/man
% cd !^
%
[Ctrl + Alt + y]
```
---
class: inverse
## 忘记历史,就是背叛。
###
- 通过 !:n 得到上一条命令第 n 个参数
```
% touch foo.txt bar.txt baz.txt
% vim !:2
vim bar.txt
```
---
class: inverse
## 忘记历史,就是背叛。
###
- 通过 !:x-y 得到上一条命令从 x 到 y 的参数
```
% touch foo.txt bar.txt baz.txt
% vim !:1-2
vim foo.txt bar.txt
```
---
class: inverse
## 忘记历史,就是背叛。
###
- 通过 !:n* 得到上一条命令从 n 开始到最后的参数
```
% cat /etc/resolv.conf /etc/hosts /etc/hostname
% vim !:2*
vim /etc/hosts /etc/hostname
```
---
class: inverse
## 忘记历史,就是背叛。
###
- 通过 !* 得到上一条命令的所有参数
```
% ls code src
% cp -r !*
```
---
class: inverse
## 忘记历史,就是背叛。
###
#### 关于 Word 选取,要记住的是:
- n
- ^|$
- [n]*
- x-y
```
% !an:$
% !10:2-4
% !{an}2
```
---
class: inverse
## 忘记历史,就是背叛。
###
- 利用 :h 选取路径开头
```
% ls /usr/share/fonts/truetype
% cd !$:h
cd /usr/share/fonts
```
- 相当于 dirname
---
class: inverse
## 忘记历史,就是背叛。
###
- 利用 :t 选取路径结尾
```
% wget http://nginx.org/download/nginx-1.4.7.tar.gz
% tar zxvf !$:t
tar zxvf nginx-1.4.7.tar.gz
```
- 相当于 basename
---
class: inverse
## 忘记历史,就是背叛。
###
- 利用 :r 选取文件名
```
% unzip filename.zip
% cd !$:r
cd filename
```
---
class: inverse
## 忘记历史,就是背叛。
###
- 利用 :e 选取扩展名
```
% echo abc.jpg
% echo !$:e
echo .jpg # bash
.jpg
echo jpg # zsh
jpg
```
---
class: inverse
## 忘记历史,就是背叛。
###
- 利用 :p 打印命令行
```
% echo *
README.md css img index.html js
% !:p
echo *
```
---
class: inverse
## 忘记历史,就是背叛。
###
- 利用 :s 做替换
```
% echo this that
% !:s/is/e
echo the that
```
- 惯用法: ^is^e
---
class: inverse
## 忘记历史,就是背叛。
###
- 利用 :g 做全局操作
```
% echo abcd abef
% !:gs/ab/cd
echo cdcd cdef
cdcd cdef
```
---
class: inverse
## 忘记历史,就是背叛。
###
- 利用 :u 将其更改为大写 (zsh)
```
% echo $histchars
% echo !$:u
echo $HISTCHARS
```
---
class: inverse
## 忘记历史,就是背叛。
###
- 利用 :l 将其更改为小写 (zsh)
```
% echo !$:l
echo $histchars
```
---
class: inverse
## 忘记历史,就是背叛。
###
#### 关于修饰符,要记住的是:
- h|t
- r|e
- p
- s
- g
- u|l
```
% ls /usr/share/fonts/opentype
% echo !$:t:u
echo OPENTYPE
```
---
class: inverse
## 忘记历史,就是背叛。
###
- 历史展开模式
![History](img/hist.png)
---
class: inverse
## 常备锦囊,内藏妙计。
###
- 使用 alias -s 定义后缀别名 (zsh)
```
% alias -s pl=perl
% script.pl
perl script.pl
% alias -s pdf=zathura
% vimbook.pdf
zathura vimbook.pdf
```
---
class: inverse
## 常备锦囊,内藏妙计。
###
- 使用 {} 构造字符串
```
% cp file.c file.c.bak
% cp file.c{,.bak}
% echo cp file.c{,.bak}
% vim {a,b,c}file.c
vim afile.c bfile.c cfile.c
% vim [abc]file.c # ?
% vim {a..c}file.c # bash
% setopt braceccl # zsh
% vim {a-c}file.c # zsh
```
---
class: inverse
## 常备锦囊,内藏妙计。
###
- 使用 {} 构造字符串 (续)
```
% wget http://linuxtoy.org/img/{1..5}.jpg
1.jpg 2.jpg 3.jpg 4.jpg 5.jpg
% touch {01..5}.txt
01.txt 02.txt 03.txt 04.txt 05.txt
% touch {1..10..2}.txt
1.txt 3.txt 5.txt 7.txt 9.txt
% echo {1..10..-2} # zsh
9 7 5 3 1
% echo {9..1..2} # bash
9 7 5 3 1
```
---
class: inverse
## 常备锦囊,内藏妙计。
###
- 使用 {} 构造字符串 (续)
```
% mkdir -p 2014/{01..12}/{baby,photo}
% echo {{A..Z},{a..z},{0..9}}
```
---
class: inverse
## 常备锦囊,内藏妙计。
###
- 使用 \`` 或 $() 做命令替换
```
% grep -l error *.pm # (1)
TunePage.pm
% vim TunePage.pm # (2)
% vim `grep -l error *.pm`
% vim $(grep -l error *.pm)
```
- 嵌套时,$() 可读性更清晰,而 \`` 则较差
```
% vim $(grep -l failed $(date +'%Y%m%d').log)
% vim `grep -l failed \`date +'%Y%m%d'\`.log`
```
---
class: inverse
## 常备锦囊,内藏妙计。
###
- 使用变量保存信息
```
% LOG=/var/log/emerge.log
% head $LOG
% grep -i compiling $LOG
```
---
class: inverse
## 常备锦囊,内藏妙计。
###
- 使用 for ... in 重复执行命令
```
% figlet -f font-type-1 Linux # (1)
% figlet -f font-type-2 Linux # (2)
% figlet -f font-type-3 Linux # (3)
% ...
% cd /usr/share/figlet
% for font in *.flf
> do
> echo $font
> figlet -f $font Linux
> done
% for font in *.flf; do echo $font; figlet -f $font Linux; done
```
---
class: inverse
## 常备锦囊,内藏妙计。
###
- 使用 for ... in 重复执行命令 (续)
```
% for dev in /dev/sd{a..d}
> do
> hdparm -t $dev
> done
```
---
class: inverse
## 重要原则
###
- Type less, accomplish more (少打多做)
- DRY, don't repeat yourself (不要重复你自己)
- Care about your tool (关心你的工具)
---
class: inverse
## 本讲之外
###
- Tab 补全
- 使用通配符 (* ? [a-z] [0-9])
- 用快捷键编辑命令行
- 字符串处理
- 复合命令 (; && ||)
---
class: inverse
## 扩展阅读
###
```
- bash: man history
- zsh: man zshexpn
- Bash Reference Manual:
https://www.gnu.org/software/bash/manual/html_node/index.html
- A User's Guide to ZSH:
http://zsh.sourceforge.net/Guide/zshguide.html
- Book: Unix Power Tools
```
---
class: center, middle, inverse
## Q & A
---
class: inverse
## 联系方式
###
```
- Website: http://linuxtoy.org
- Twitter: http://twitter.com/linuxtoy
- GitHub: http://github.com/xuxiaodong
- Gmail: [email protected]
```
---
class: center, middle, inverse
## 谢谢大家!
---
class: center, middle, inverse
Made in [Remark](http://remarkjs.com)
</textarea>
<script src="js/remark.min.js" type="text/javascript"></script>
<script type="text/javascript">
var slideshow = remark.create({
highlightStyle: 'monokai',
highlightLanguage: 'remark'
});
</script>
</body>
</html>