Retourner au contenu associé (entrée de forum : Programmation script shell ksh unix)
Posté par Octabrain le 10 octobre 2009 à 15:35. En réponse au message Programmation script shell ksh unix. Évalué à -1.
AltStyle によって変換されたページ (->オリジナル) / アドレス: モード: デフォルト 音声ブラウザ ルビ付き 配色反転 文字拡大 モバイル
[^] # Re: exclure grep
Posté par Octabrain . En réponse au message Programmation script shell ksh unix. Évalué à -1.
Bash :
$ ps aux | grep gre[p]
xxx 2892 0.0 0.1 3476 804 pts/0 R+ 13:33 0:00 grep gre[p]
$
Dash (shell minimal posix) :
$ ps aux | grep gre[p]
$
Zsh :
$ ps aux PG gre[p]
zsh: no matches found: gre[p]
$