文件管理
文件或命令查找which
查找一个命令的绝对路径
[root@oldboy ~]# which ls
whereis
[root@oldboy ~]# which ls 查找命令的路径、帮助手册、等
[root@oldboy ~]# which -b ls 仅显示命令所在的路径
type
对于内核相关的一些命令,需要使用type命令
-a 查所有
对于后面要使用一个命令的路径时。
wget
1.找到需要下载的资源
2.在linux上使用wget命令进行下载(默认下载到当前目录)
3.由于下载的是文件,可以使用cat,less,more查看
下载到当前目录
wget http://fj.xuliangwei.com/public/weixin.py
指定保存的位置,并重新命名
wget -O /opt/tt.py http://fj.xuliangwei.com/public/weixin.py
只指定保存位置,不重新命名
wget -O /opt/weixin.py http://fj.xuliangwei.com/public/weixin.py
curl
在线浏览网站资源内容(源代码)
curl www.baidu.com
将浏览的内容保存到本地,并重命名
(没有明确指定路径,则表示当前目录)
curl -o wei.txt http://fj.xuliangwei.com/public/weixin.py
将浏览的内容保存到指定位置
curl -o /opt/weixin.py http://fj.xuliangwei.com/public/weixin.py
Ps:通常情况下推荐使用wget下载,但由于系统很多时候默认没有wget,会偶尔使用curl
rz
如果无法将文件直接拖拽进Linux服务器
1.没有安装lrzsz
yum install lrzsz -y
2.上传的是空文件
只能上传文件,不支持上传文件夹,不支持大于4个G的文件
sz
只能下载文件(单个文件),不支持下载文件夹
sz 路径
文件内容处理命令
排序 sort
[root@oldboy ~]# sort -t ":" -k2 -n file.txt
[root@oldboy ~]# sort -t "." -k3.1,3.1 -k4.1,4.3 -n ip.txt
-t 指定分隔符
-k 第几列
-n 以阿拉伯数字方式排序
-r 倒序排列
去重 uniq、统计
[root@oldboy ~]# sort file1.txt | uniq -c
-c 统计出现次数
文件的截取
cut
[root@oldboy ~]# cut -d " " -f 2,5 file2.txt |awk -F "," '{print 2}'
[root@oldboy ~]# cut -d " " -f 2,5 file2.txt | sed 's#,##g'
-d 指定分隔符
awk
[root@oldboy ~]# awk '{print 5}' file2.txt | awk -F "," '{print 2}'
[root@oldboy ~]# awk -F "/" '{print 2,$5}'
统计行号
wc
wc -l