Hello, I have a subroutine that uses useradd to create accounts -- @cmd = ('useradd', '-m', $account); my $result = system @cmd; --
but when useradd fails, I need to stop it from sending the error message to STDER. Is it possible with system? Thanks!