摘要: 取目录 echo "/etc/fstab" |sed -r 's#(^/.*/)([^/]+/?)#\1#' 取基名 echo "/etc/fstab" |sed -r 's#(^/.*/)([^/]+/?)#\2#' 阅读全文
posted @ 2020-07-11 21:17 树在地上 阅读(399) 评论(0) 推荐(0) 编辑
摘要: w -h|tr -s " "|cut -d " " -f3|sort|uniq -c|sort -nr 阅读全文
posted @ 2020-07-11 17:16 树在地上 阅读(329) 评论(0) 推荐(0) 编辑
摘要: [root@centos7 data]#grep -v "/sbin/nologin" /etc/passwd root:x:0:0:root:/root:/bin/bash sync:x:5:0:sync:/sbin:/bin/sync shutdown:x:6:0:shutdown:/sbin: 阅读全文
posted @ 2020-07-11 16:56 树在地上 阅读(476) 评论(0) 推荐(0) 编辑
摘要: cut -d: -f1,3,7 /etc/passwd |sort -t: -k2 -n | tail -1 阅读全文
posted @ 2020-07-11 16:01 树在地上 阅读(330) 评论(0) 推荐(0) 编辑
摘要: (1)、创建组distro,其GID为2019; groupadd distro -g 2019 (2)、创建用户mandriva, 其ID号为1005;基本组为distro; useradd mandriva -u 1005 -g distro (3)、创建用户mageia,其ID号为1100,家 阅读全文
posted @ 2020-07-03 14:41 树在地上 阅读(194) 评论(0) 推荐(1) 编辑
摘要: tr ‘a-z’ ‘A-Z’< /etc/issue > /tmp/issue.out 或者 tr [:lower:] [:upper:] < /etc/issue > /tmp/issue.out 阅读全文
posted @ 2020-07-03 13:47 树在地上 阅读(247) 评论(0) 推荐(0) 编辑
摘要: cp /etc/p*[^[:digit:]] /tmp/mytest1 阅读全文
posted @ 2020-07-03 13:33 树在地上 阅读(270) 评论(0) 推荐(0) 编辑
摘要: ls /etc/[^[:alpha:]]* 阅读全文
posted @ 2020-07-03 13:26 树在地上 阅读(334) 评论(0) 推荐(0) 编辑
摘要: 文件的元数据有 文件的属性 大小 创建时间 访问时间,属主属组等信息。 三个时间戳 acess time 访问时间,atime,读写文件内容的时间 modify time 修改时间,mtime,改变文件内容的时间 change time 改变时间,ctime,文件的元数据改变的时间 修改文件时间戳的 阅读全文
posted @ 2020-06-28 21:09 树在地上 阅读(281) 评论(0) 推荐(0) 编辑
摘要: 软链接 ln -s 原文件 目标文件 特征:1、相当于windows的快捷方式 2、符号链接,所以链接文件大小都很小 3、当运行软连接的时候,会根据链接指向找到真正的文件,然后执行 4、所有链接文件的权限都是777,而真正的权限是由指向的那个文件决定的 5、原文件丢失后,软链接无法访问,会报找不到的 阅读全文
posted @ 2020-06-28 21:07 树在地上 阅读(673) 评论(0) 推荐(0) 编辑