命令行指南
# 常用命令行工具
-
文本处理 VIM,
grep
/, , , , , , , ,tr
-
系统监控
jobs
,ps
,top
,kill
,free
,dmesg
,lsof
-
查文档
tldr
,man
-
窗口控制 tmux
# 文件管理
# ls
ll 等于 ls -al
# tar
tar
.tar
is a sinple bundle of files, without compression.tar.gz
with compression
usage
|
|
# 文件控制
# head/tail
head -n5
# find
find
|
|
|
|
-print0
|
|
# 输入输出控制
# 重定向
-
<
以某文件的内容作为输入流 -
>>
追加模式将输出流重定向到某文件 -
>
覆盖模式将输出流重定向到某文件 -
&>>
=>>
+2>&1
command >> filename 2>&1
is equivalent tocommand &>> filename
-
stdout 的 fd 是 1, stderr 的 fd 是 2
|
|
会将 1 的内容追加到 2.txt 末尾
# sort
sort -n -k
|
|
其实默认就是 -k1,1
# wc
wc
wc -l
# bc
berkeley count?
calculate a string expression
|
|
# uniq
sort | uniq
# cut
|
|
- 以空格为分隔符, 第 2 个 field
- out: 219
- 前两部分的结果是 ‘Content-Length: 219’
# tee
tee
- takes an input, write it to STDOUT and also a file
example
|
|
# xargs
xargs
|
can redirect STDOUT to STDIN,xargs
can redirect STDOUT to arguments-0
means delimited by\0
, usually used afterfind -print0
example
|
|
# 文本处理
# rg
|
|
# awk
a column-based(whitespace separated) string processor
print the second column
|
|
paste in (s)ingle line, (d)elimited by ‘,’
conditions
|
|
setup and teardown
|
|
当然, 单纯数行用 wc 更快, 但你应该知道 awk 也是可以做到的
# sed
a string editor
sed 默认对每一行分别操作
建议默认使用 sed -E
, 这是更现代化的模式
sed -E 's/(ab)*//g'
- = `sed ’s/(ab)*//g'
sed substitude
|
|
在这个例子中, ssh.log 是一个 nginx 日志(大概), sed 对 cat 的展示结果进行了 正则替换
|
|
# regex
互动练习: regex101.com(已通)
替换是 默认 greedy 的, .*
non-greedy 需要 .*?
# 快捷键
以下快捷键以 Linux 为主, Powershell 和 Mac Terminal 不一定全都可用
键入 man readline
可以查看 Bash 中的默认快捷键
<c-a>
移动到行首<c-e>
行尾<c-h>
删除前一个字符<c-w>
删除前一个单词<c-u>
删除光标前的内容<c-k>
删除光标后的内容<c-r>
历史命令<alt-b>
向后一个单词<alt-f>
向前一个单词<c+l>
等于 clear, 清屏<c+d>
约等于退出? 可用于 exit python | WIN 是<c+z>enter
# linux 文件系统
- sys 是内存参数
- sudo echo 500 > brightness 会失败因为sudo 只运行 了 echo , 而不是 sudo 打开 brightness
- sudo su 会换成 root
- echo 500 | sudo tee brightness 就可行, 因为用 sudo 执行了 tee, tee 打开的 brightness
# Shell scripting
# 变量
赋值与调用
- foo=bar
- echo $foo
单引号和双引号
单引号中的变量不会被展开
特殊变量
-
$0
指程序本身 -
$1
to$9
Arguments to the script, -
$$
PID -
$?
returns result code of last command -
$#
参数数量 -
$_
表示重复上一条命令的变量 -
$_
Last argument from the last command. If you are in an interactive shell, you can also quickly get this value by typing Esc followed by . or Alt+. -
$@
是$1
,$2
… 的集合 -
sudo !!
展开就是上一条命令, 在执行必要用 sudo 的命令好用 -
$((expression))
stores the result, example: var=$((3+9)) -
foo=$(pwd)
中的$()
是 pwd 命令结果
Practices
与上一条参数相同的话:
|
|
遍历程序参数:
|
|
对必须接受文件的为参数的程序很有用:
- ls 的结果会存在临时文件里交给 cat
|
|
遍历当前目录很简单:
|
|
快速比较目录:
|
|
shebang
|
|
特殊变量的使用
|
|
# 正则展开
{}
|
|
{}{}
will create cartesian product
# test
- -eq, -ge, -gt, -le, -lt, -ne
- -a, -o
[]
是可行的, 但使用[[]]
会 更好
man test for more info
|
|
# control
|
|
|
|
|
|
# Data wrangling
sed, awk sort, wc, bc,
统计 syslog 中 各用户名登录数据, 并用 R 进行统计学分析
或者画图
批量卸载不需要的版本号
set loglevel to panic, take a single frame from webcam device as a image, print to STDOUT rather than give a file(-), convert
read from STDIN(-), convert to grey colorspace and write to STDOUT(-), compress and send to server tsp, make copies both file and STDOUT, bring it back to local stream and feh
displays
show on server tsp