File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -940,17 +940,17 @@ stages:
940940
941941 ```bash
942942 $ ls nonexistent >> /tmp/foo/baz.md
943- ls: cannot access ' nonexistent' : No such file or directory
943+ ls: nonexistent: No such file or directory
944944 $ ls nonexistent 2>> /tmp/foo/qux.md
945945 $ cat /tmp/foo/qux.md
946- ls: cannot access ' nonexistent' : No such file or directory
946+ ls: nonexistent: No such file or directory
947947 $ echo "James says Error" 2>> /tmp/foo/quz.md
948948 James says Error
949949 $ cat nonexistent 2>> /tmp/foo/quz.md
950950 $ ls nonexistent 2>> /tmp/foo/quz.md
951951 $ cat /tmp/foo/quz.md
952952 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
954954 ```
955955
956956 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