GNU/Linux >> Linux の 問題 >  >> Linux

BashスクリプトにUnix/Linuxユーザーを追加する方法は?

これが私のテストbashスクリプトです。動作させることができません。 2つのエラーが表示されます:

  1. Use of uninitialized value $answer in chop at /usr/sbin/adduser line 589.
  2. Use of uninitialized value $answer in pattern match (m//) at /usr/sbin/adduser line 590.

これが私のスクリプトです:

#!/bin/bash
sudo adduser myuser << ENDX
password
password
First Last




Y
ENDX
exit 0

出力は次のとおりです:

[email protected]$ ./adduser.sh 
Adding user `myuser' ...
Adding new group `myuser' (1001) ...
Adding new user `myuser' (1001) with group `myuser' ...
Creating home directory `/home/myuser' ...
Copying files from `/etc/skel' ...
Enter new UNIX password: Retype new UNIX password: passwd: password updated successfully
Changing the user information for myuser
Enter the new value, or press ENTER for the default
        Full Name []:   Room Number []:         Work Phone []:  Home Phone []:  Other []: Use of uninitialized value $answer in chop at /usr/sbin/adduser line 589.
Use of uninitialized value $answer in pattern match (m//) at /usr/sbin/adduser line 590.
Is the information correct? [Y/n] [email protected]$

これはKubuntu12.04LTSにあります

$ bash --version
bash --version
GNU bash, version 4.2.25(1)-release (x86_64-pc-linux-gnu)

adduser(システムスクリプト–私が変更していない)からの行と、関連する2つの行番号の表記を次に示します。

for (;;) {
       my $chfn = &which('chfn');
    &systemcall($chfn, $new_name);
    # Translators: [y/N] has to be replaced by values defined in your
    # locale.  You can see by running "locale yesexpr" which regular
    # expression will be checked to find positive answer.
    print (gtx("Is the information correct? [Y/n] "));
    chop (my $answer=<STDIN>);        <-- LINE 589
    last if ($answer !~ m/$noexpr/o); <-- LINE 590
}

承認された回答:

stdinの代わりにコマンドラインパラメータを使用し、パスワードにchpasswdを使用するだけです。

例:

sudo adduser myuser --gecos "First Last,RoomNumber,WorkPhone,HomePhone" --disabled-password
echo "myuser:password" | sudo chpasswd

Linux
  1. Linuxでグループにユーザーを追加またはグループから削除する方法

  2. LinuxでBASHコマンドライン履歴をクリアする方法

  3. LinuxBashシェルスクリプトで暗号化されたパスワードを使用する方法

  1. Linuxでユーザーパスワードを変更、削除、または無効にする方法

  2. Linuxのグループにユーザーを追加する方法(例を含む)

  3. Linuxでユーザーをグループに追加する方法

  1. Linuxデスクトップにユーザーを追加する方法

  2. Bashスクリプトでユーザーアカウントとパスワードを自動的に追加する方法は?

  3. Linux でのパニック パスワード