Help for this page

Select Code to Download


  1. or download this
    system("$useradd -c \"$fullname\" ...");
    
  2. or download this
    system( 
        $useradd, 
        qq|-c "fullname"|,
        ...
    
  3. or download this
        -c "value-of-$fullname"
    
  4. or download this
    system ($useradd,
        '-c', $fullname,
    ...
        '-p', $password,
        '-s', '/bin/false',
        '-u', $uid, $username);
    
  5. or download this
    system('cat -n /etc/group');
    system('cat', '-n /etc/group');
    system('cat', '-n', '/etc/group');