Redirect STDOUT and STDERR of chsh

EDIT: Nevermind, figured it out! Forgot to put backslashes in my perl script to not process literals!

Hi everyone. I am trying to have this command pass silently. (no output)

chsh -s /bin/sh news

Currently it outputs.

I've tried....

&> /dev/null
1> /dev/null
2>&1 /dev/null
1>&2 /dev/null
2> /dev/null

Thanks in advance!

austin,

1> /dev/null should work and it works as well.

chsh -s /sbin/nolgin 1> /dev/null