Linux 指令篇:使用者资讯与管理--chsh
发布时间:2006-10-14 8:56:55   收集提供:gaoqian
名称:chsh

使用权限:所有使用者

用法:shell>> chsh

说明:更改使用者 shell 设定

范例:

        shell>> chsh
        Changing fihanging shell for user1
        Password:  [del]
        New shell [/bin/tcsh]:          ### [是目前使用的 shell]
        [del]

        shell>> chsh -l                 ### 展示 /etc/shells 档案内容
        /bin/bash
        /bin/sh
        /bin/ash
        /bin/bsh
        /bin/tcsh
        /bin/csh
 
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50