Linux shell中如何输出⼀etc⼀passwd中某一规定用户名的全名

2024-11-24 11:48:17
推荐回答(1个)
回答1:

grep 用户名 /etc/passwd | awk -F: '{ print $5 }'