shell编程练习5

/etc/passwd里面由”:“分割,第一栏是用户名称。写一个脚本,将/etv/passwd的第一栏取出,每一栏由一行字串:“The line account is "root"”显示,其中line代表行数,root代表用户名。

程序清单:



运行结果:


ps:cut  -d:  -f 1 /etc/passwd :取出第一栏

你可能感兴趣的:(shell编程练习5)