psコマンドのプションに”-“ハイフンは要らないです。

ハイフンをつけてしまうと Warning: bad syntax, perhaps a bogus の警告が出力されます。

# ps -aux | grep named
Warning: bad syntax, perhaps a bogus '-'? See /usr/share/doc/procps-3.2.7/FAQ
bind     16887  0.0  0.1  13208  5076 ?        Ss   Jul06  35:37 /usr/local/bind/sbin/named -c /usr/local/bind/etc/named.conf -u bind

 

ハイフンをつけないと警告は出力されません。

# ps aux | grep named
bind     16887  0.0  0.1  13208  5076 ?        Ss   Jul06  35:37 /usr/local/bind/sbin/named -c /usr/local/bind/etc/named.conf -u bind