IP属地:安徽
创建用户: useradd -u :用户的UID -g :指定私有组 -c :对这个用户的描述 -d :指定家目录 -s :指定shell -G...
cat /etc/issue /etc/fstab > /tmp/etc.test
cat /etc/group | sort -t : -k 3 -n | head -10 | cut -d : -f1
ls /var | wc -l wc -l:显示行数
ls /etc/*.conf | cut -d / -f3 | tr ‘a-z' 'A-Z' > /tmp/etc.conf
ifconfig eth0 | grep 'inet' | awk '{print $2}' | head -1 awk '{print $2}...
cat /etc/passwd | sort -t : -k 3 -n | tail -10 | tr 'a-z' 'A-Z' > /tmp/e...
cat /etc/passwd | cut -d : -f7 | uniq -c | sort -n | tail -1 uniq -c:在每列...
who | cut -d' ' -f1 | tail -1 | xargs id tail -1:查看最后一行 xargs :构造参数列表并运行...