码迷,mamicode.com
首页 > 系统相关 > 详细

shell学习笔记(1):利用IFS打印用户和默认shell

时间:2014-12-17 12:35:20      阅读:350      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   ar   io   color   os   sp   for   

参考资料为:linux shell脚本攻略 作者sarath Lakshman 人民邮电出版社

shell:读取文件的每一行内容并输出 的写法1

目的:读取passwd文件,获得用户名和其默认的shell,并打印出来

首先cp /etc/passwd ./passwd_cp
shell脚本get_usr_shell.sh内容如下:

bubuko.com,布布扣
#!/bin/bash

function get_line_usr_shell(){
#    echo $#

    line="$1"
    oldIFS=$IFS

    IFS=":"
    count=0

    for item in $line
    do
        [ $count -eq 0 ] && user=$item
        [ $count -eq 6 ] && shell=$item
        let count++
    done
    IFS=$oldIFS
    echo $user\s shell is $shell
}

if [ $# -gt 1 ]
then
    echo "parameter is more one in main"
    exit 1
fi

while read line
do
#    echo $line
    get_line_usr_shell $line
done < $1
shell脚本

然后在终端输入./get_usr_shell passwd_cp即可得到结果:

bubuko.com,布布扣

shell学习笔记(1):利用IFS打印用户和默认shell

标签:style   blog   http   ar   io   color   os   sp   for   

原文地址:http://www.cnblogs.com/Shirlies/p/4168890.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!