更多“Whatcommandwillprintalistofusernames(firstcolumn)andtheircorrespondinguserid(uid,thirdcolumn)from/etc/passwd?() ”相关问题
  • 第1题:

    显示Linux系统中注册用户数的命令是()。

    A.account –l

    B.nl /etc/passwd | head

    C.wc -users /etc/passwd

    D.wc -lines /etc/passwd


    wc -lines /etc/passwd

  • 第2题:

    对/etc/passwd 文件进行编号显示,命令为():

    A.cat –n /etc/passwd

    B.cat –l /etc/passwd

    C.cat > /etc/passwd

    D.cat >> /etc/passwd


    cat – n /etc/passwd

  • 第3题:

    显示/etc/passwd文件中的带有root字样的行,并存储到一个名为root.txt的文件中,下面那些命令是正确的?

    A.cat /etc/passwd|grep root>root.txt

    B.grep root /etc/passwd>root.txt

    C.grep root /etc/passwd 1>root.txt

    D.cat /etc/passwd|grep "root">root.txt


    请以附件形式上传!

  • 第4题:

    查看用户账户信息的文件和路径正确的是()

    A./etc/passwd文件

    B./etc/shadow文件

    C./etc/group文件

    D./root/passwd文件


    etc/group

  • 第5题:

    查找/etc/passwd文件中的带有root字样的行,并存储到一个名为root.txt的文件中,下面那些命令是正确的?

    A.cat /etc/passwd|grep root>root.txt

    B.grep root /etc/passwd>root.txt

    C.grep root /etc/passwd 1>root.txt

    D.cat /etc/passwd|grep "root">root.txt


    B