摘要:
取目录 echo "/etc/fstab" |sed -r 's#(^/.*/)([^/]+/?)#\1#' 取基名 echo "/etc/fstab" |sed -r 's#(^/.*/)([^/]+/?)#\2#' 阅读全文
摘要:
w -h|tr -s " "|cut -d " " -f3|sort|uniq -c|sort -nr 阅读全文
摘要:
[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: 阅读全文
摘要:
cut -d: -f1,3,7 /etc/passwd |sort -t: -k2 -n | tail -1 阅读全文