免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
12
最近访问板块 发新帖
楼主: iamvenusjoe12
打印 上一主题 下一主题

[文本处理] HPUX下,如何通过shell直接修改/etc/passwd文件,将某些帐号的shell修改为/sbin/false [复制链接]

论坛徽章:
0
11 [报告]
发表于 2012-10-22 10:27 |只看该作者
感谢各位,采用上述方法,已解决实现需求。

while read myModUser
do
    if [ -f $mydir/mypass ];then
        echo "Now modify user ${myModUser} shell to /sbin/false..."
        awk 'BEGIN{FS=OFS=":"}/^'"${myModUser}"':/{$7="/sbin/false"}1' $mydir/mypass > $mydir/mypass.tmp        cp -p $mydir/mypass $mydir/mypass.org2.$$
        cp -p $mydir/mypass.tmp $mydir/mypass
        if [ $? -eq 0 ];then
           echo "Opr suc."
        else
           echo "User ${myModUser} shell to /sbin/false opr failed, Pls checkout!"
        fi
    else
        echo "Dir $mydir/mypass isn't exist."
    fi
done<$mydir/mymod_user.tmp

论坛徽章:
0
12 [报告]
发表于 2012-10-22 10:36 |只看该作者
To jason680:

           shell       The absolute path name of a shell.  If the file
                         /etc/shells exists, the new login shell must be
                         listed in that file.
           /sbin/false 不是一个标准的shell,不能使用chsh修改:

举例:
# chsh daemon /sbin/false
chsh: invalid shell /sbin/false
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP