本文主要是介绍写一个程序,可以将/et/passwd的第一列取出,而且每一列都以一行字符串“the 1 account is “root””来显示,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
写一个程序,可以将/et/passwd的第一列取出,而且每一列都以一行字符串“the 1 account is “root””来显示
#!/bin/bash
i=1j=`wc -l /etc/passwd|awk '{print $1}'`while [ $i -le $j ]doecho "The $i account is "`sed -n ${i}p /etc/passwd|cut -d : -f 1`let i++done
转载:https://zhidao.baidu.com/question/247014517.html
这篇关于写一个程序,可以将/et/passwd的第一列取出,而且每一列都以一行字符串“the 1 account is “root””来显示的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!