-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest.diff
More file actions
100 lines (89 loc) · 1.22 KB
/
test.diff
File metadata and controls
100 lines (89 loc) · 1.22 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
12c12,14
< shell:/$ ls
---
> shell:$ ls
> rm.c
> rm
28,76c30,61
< shell:/$ echo This is cool
< This is cool
< shell:/$ echo I know how to handle spaces
< I know how to handle spaces
< shell:/$ cat f1.txt
< This is f1
< It contains text
< shell:/$ f1.txt
< This is f1
< It contains text
< shell:/$ cat f1.txt f2.txt
< This is f1
< It contains text
< 0
< 11
< 222
< 3333
< 44444
< 555555
< shell:/$ f2.txt f1.txt
< 0
< 11
< 222
< 3333
< 44444
< 555555
< shell:/$ cat f1.txt f2.txt f1.txt f2.txt
< This is f1
< It contains text
< 0
< 11
< 222
< 3333
< 44444
< 555555
< This is f1
< It contains text
< 0
< 11
< 222
< 3333
< 44444
< 555555
< shell:/$ gcc
< gcc: command not found
< shell:/$ cat notThere
< cat: notThere: No such file or directory
< shell:/$ shutdown
<
---
> shell:$ mkdir DIR1
> shell:$ mkdir DIR2
> shell:$ mkdir DIR3
> shell:$ mkdir DIR4
> shell:$ cd DIR4
> shell:$ mkdir foo
> shell:$ ls
> foo
> shell:$ cd ../
> shell:$ ls
> rm.c
> rm
> mkdir.c
> mkdir
> shutdown
> shutdown.c
> shell.c
> shell
> ls.c
> ls
> echo
> echo.c
> cat.c
> cat
> f1.txt
> f2.txt
> panic
> DIR1
> DIR2
> DIR3
> DIR4
> shell:$ shutdown