質問編集履歴
2
文法の修正
test
CHANGED
File without changes
|
test
CHANGED
@@ -54,7 +54,7 @@
|
|
54
54
|
|
55
55
|
```
|
56
56
|
|
57
|
-
$ echo abc | grep xyz || echo 'error!'
|
57
|
+
$ echo abc | grep xyz || echo 'error!' >&2; exit 1
|
58
58
|
|
59
59
|
|
60
60
|
|
1
文法の修正
test
CHANGED
File without changes
|
test
CHANGED
@@ -54,7 +54,7 @@
|
|
54
54
|
|
55
55
|
```
|
56
56
|
|
57
|
-
$ echo abc | grep xyz || echo 'error!'; >&2; exit 1
|
57
|
+
$ echo abc | grep xyz || echo 'error!'; >&2; exit 1
|
58
58
|
|
59
59
|
|
60
60
|
|