1

我编写了以下脚本来从单词列表中删除用户。词表有 3 或 4 个字段,分别是名字、中间名、姓氏和用户 ID。我正在使用 awk 创建一个用户名,其中包含用户的名字首字母、姓氏和他们 ID 的最后两位数字。然后使用带有标志 r 的命令 userdel 来删除用户的主目录。

但是,当我运行脚本时,它给了我一个错误,说明如下:

Usage: userdel [options] LOGIN

Options:
  -f, --force                   force some actions that would fail otherwise
                                e.g. removal of user still logged in
                                or files, even if not owned by the user
  -h, --help                    display this help message and exit
  -r, --remove                  remove home directory and mail spool
  -R, --root CHROOT_DIR         directory to chroot into
  -Z, --selinux-user            remove any SELinux user mapping for the user

剧本:

#! /bin/bash

# Removing users using positional parameters

getusername(){
    line=${1}
    len=`echo ${line}|awk '{ FS = " " } ; { print NF}'`
    if [[ ${len} -eq 3 ]]
    then
        initial=`echo ${line}| awk {'print $1'} |cut -c1`
        lastname=`echo ${line} | awk {'print $2'}`
        id=`echo ${line}| awk {'print $3'}|grep -o '..$'`
        username=`echo ${initial}${lastname}${id} |tr '[:upper:]' '[:lower:]'`
    elif [[ ${len} -eq 4 ]]
    then
        initial=`echo ${line} | awk {'print $1'} |cut -c1`
        lastname=`echo ${line} | awk {'print $3'}`
        id=`echo ${line}| awk {'print $4'}|grep -o '..$'`
        username=`echo ${initial}${lastname}${id} |tr '[:upper:]' '[:lower:]'`
    else
        echo "Line ${line} is not expected as it should be considered for creating Username and Password"
    fi    
}

sudo userdel -r  $getusername
4

1 回答 1

0

如何调用userdel

userdel -r username

这将删除用户username的帐户,并删除该用户的主目录和关联的邮件文件。

为此,您需要使用变量而不是调用函数。

否则userdel会抱怨,就像它已经在做或者只是打字一样userdel

于 2019-11-09T11:26:34.813 回答