「ugrep」の版間の差分
ナビゲーションに移動
検索に移動
Pt4a editor (トーク | 投稿記録) 細 (Batch Update) |
Pt4a editor (トーク | 投稿記録) 細 (Batch Update) |
||
13行目: | 13行目: | ||
== 説明 == | == 説明 == | ||
− | ugrep は GNU grep | + | ugrep は GNU grep のラッパーです。指定パターンがファイルから見つからなくてもエラーステータスは1でなく、0となります。 |
=== 例(その1) === | === 例(その1) === | ||
40行目: | 40行目: | ||
© 2021 Universal Shell Programming Laboratory [https://www.usp-lab.com/ site] | © 2021 Universal Shell Programming Laboratory [https://www.usp-lab.com/ site] | ||
− | |||
[[Category:man]] | [[Category:man]] |
2021年6月7日 (月) 08:37時点における最新版
名前
ugrep : GNU grep のラッパー
書式
使い方とオプション
Usage
Usage : ugrep [OPTION]… PATTERN [FILE]…
説明
ugrep は GNU grep のラッパーです。指定パターンがファイルから見つからなくてもエラーステータスは1でなく、0となります。
例(その1)
$ cat data a 1 b 2 c 3 $ ugrep a data a 1 $ echo $? 0 $ ugrep x data $ echo $? 0
Version and Edition
Version : Nov 19 17:10:42 JST 2013
Edition : 1
© 2021 Universal Shell Programming Laboratory site