cut基本使用

cut命令:
cut [OPTION]... [FILE]...
-d DELIMITER: 指明分隔符
-f FILEDS:指明字段

[root@ansible ~]# cut -d : -f1 /etc/passwd
root
bin
daemon
adm
lp
sync
shutdown
halt
mail
operator
games
ftp


你可能感兴趣的:(cut基本使用)