linux字符串列截取 cut -d ‘分割条件’ -f ‘列数’
[root@LocalWeb01 ~]# less /etc/passwd | grep '^user' | grep -v 'root' | cut -d ':' -f 1
user1
linux字符串列截取 cut -d ‘分割条件’ -f ‘列数’
[root@LocalWeb01 ~]# less /etc/passwd | grep '^user' | grep -v 'root' | cut -d ':' -f 1
user1