一,别名alisa
别名(给命令起个小名)
给危险命令加上保护
如:
cp=cp -i 覆盖之前提示
rm=rm -i 删除之前提示
mv=mv -i 移动之前提示
(1)输入net显示网卡内容
alisa net =‘cat /etc/sysconfig/network-scripts/ifcfg-eth0’ (临时生效,重新登录后失效)
(2)永久生效 /etc/profile
vim /etc/porfile (进入文件)
输入:alias net ='cat /etc/sysconfig/network-scripts/ifcfg-eth0' (永久生效)
检查/重启输入: source /etc/profile
二,三剑客老三-----------grep 过滤 在文件中找内容
-n 显示行号和内容
例如:grep -n ‘ssh’ /tmp/vim.log
-w 按照单词进行过滤
例如:grep -w ‘ssh’ /tmp/vim.log
-i 过滤时部分大小写(liunx 默认是分大小写的)
例如:grep -i ‘ssh’ /tmp/vim.log
-v 排除/取反
例如: grep -v ‘#’ /tmp/vim.log
三,tr 替换(1对1替换)
tr ‘o’ ‘0’ </tmp/oldboy.txt
tr ‘a-z’ ‘A-Z’ </tmp/oldboy.txt(改变大小写)
四,linux 文件属性(ls -lhi)
1,
2,
3,
4,
5,
6,
7,
8,
https://www.processon.com/view/link/5caac6c5e4b06765f08823bb(文件属性)