File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -940,17 +940,17 @@ stages:
940
940
941
941
```bash
942
942
$ ls nonexistent >> /tmp/foo/baz.md
943
- ls: cannot access ' nonexistent' : No such file or directory
943
+ ls: nonexistent: No such file or directory
944
944
$ ls nonexistent 2>> /tmp/foo/qux.md
945
945
$ cat /tmp/foo/qux.md
946
- ls: cannot access ' nonexistent' : No such file or directory
946
+ ls: nonexistent: No such file or directory
947
947
$ echo "James says Error" 2>> /tmp/foo/quz.md
948
948
James says Error
949
949
$ cat nonexistent 2>> /tmp/foo/quz.md
950
950
$ ls nonexistent 2>> /tmp/foo/quz.md
951
951
$ cat /tmp/foo/quz.md
952
952
cat: nonexistent: No such file or directory
953
- ls: cannot access ' nonexistent' : No such file or directory
953
+ ls: nonexistent: No such file or directory
954
954
```
955
955
956
956
The tester will check if the commands correctly execute commands and append their standard error to a file as specified.
You can’t perform that action at this time.
0 commit comments