摘要: 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) 编辑
摘要: 第一步:cat查出所有/sbin/nologin的用户 第二步:对/sbin/nologin的用户使用grep -v反选,查出默认shell为非/sbin/nologin的用户 cat /etc/passwd | grep -v /sbin/nologin 第三步:使用wc -l显示用户数量,使用c 阅读全文
posted @ 2022-01-09 23:42 LeeSin- 阅读(310) 评论(0) 推荐(0) 编辑
摘要: 创建用户user1、user2、user3。在/data/下创建目录test (1)、目录/data/test属主、属组为user1 (2)、在目录属主、属组不变的情况下,user2对文件有读写权限 (3)、user1在/data/test目录下创建文件a1.sh, a2.sh, a3.sh, a4 阅读全文
posted @ 2022-01-08 00:34 LeeSin- 阅读(437) 评论(0) 推荐(0) 编辑
摘要: 用户和组管理类命令的使用方法: 用户创建(useradd),删除(userdel),修改(usermod),密码(passwd) useradd # useradd -u UID uid定义在/etc/login.defs# useradd -g GID gid 指明用户所属组,可为组名,也可gid 阅读全文
posted @ 2022-01-07 21:59 LeeSin- 阅读(64) 评论(0) 推荐(0) 编辑
摘要: cat /etc/issue | tr "a-z" "A-Z" > /tmp/issue.out 阅读全文
posted @ 2022-01-07 18:58 LeeSin- 阅读(21) 评论(0) 推荐(0) 编辑
摘要: cp -r /etc/p[^0-9] /tmp/mytest1/ 阅读全文
posted @ 2022-01-07 01:23 LeeSin- 阅读(59) 评论(0) 推荐(0) 编辑