摘要: 20分钟走完哦 阅读全文
posted @ 2022-01-10 01:30 LeeSin- 阅读(74) 评论(0) 推荐(0) 编辑
摘要: systeminfo.sh脚本: echo -e "hostname 主机名 " : `hostname`echo -e "IPv4 address IPv4地址 :" `ifconfig ens33 | grep -Eo '([0-9]{1,3}.){3}[0-9]{1,3}'| head -n1 阅读全文
posted @ 2022-01-10 01:16 LeeSin- 阅读(184) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2022-01-10 01:12 LeeSin- 阅读(50) 评论(0) 推荐(0) 编辑
摘要: uniq命令用于去重文件内容中的连续重复行,通常要跟sort一起使用,先利用sort排序,然后用uniq去重。 uniq命令与sort命令类似,并不对文件内容进行实际的排序(即文件内容没有修改),只是在输出内容中去重。 uniq -c :显示每一行重复的次数 阅读全文
posted @ 2022-01-10 00:39 LeeSin- 阅读(96) 评论(0) 推荐(0) 编辑
摘要: 1) 查出用户UID (/etc/passwd) 2)查出用户UID的用户名、UID及shell类型 3)查出用户UID的用户名、UID及shell类型并倒序排出 4)查出用户UID最大值的用户名、UID及shell类型 cut -d ":" -f 1,3,7 /etc/passwd | sort 阅读全文
posted @ 2022-01-10 00:18 LeeSin- 阅读(271) 评论(0) 推荐(0) 编辑