-
Notifications
You must be signed in to change notification settings - Fork 0
/
demo.tape
58 lines (53 loc) · 910 Bytes
/
demo.tape
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
Output demo.gif
Set Shell "bash"
Set FontSize 16
Set Padding 5
Set Margin 5
Set Width 640
Set Height 480
Set Framerate 60
Set TypingSpeed 25ms
Set PlaybackSpeed 0.4
Set CursorBlink false
Set WindowBar ColorfulRight
Require filegen
Type "filegen -count 100 -size 10K -path data"
Enter
Type "find data -type f -printf '%s %p\n' | head"
Enter
Sleep 1
Type "find data -type f | wc -l"
Enter
Sleep 1
Type "head -c 50 `find data -type f | head -1`"
Enter
Sleep 1
Hide
Type "rm -rf data"
Enter
Type "clear"
Enter
Show
Type "filegen -count 100 -size 1.25M \"
Enter
Type "-random-size-min 100K -path data"
Enter
Sleep 1
Type "find data -type f -printf '%s %p\n' | head"
Enter
Sleep 1
Type "find data -type f | wc -l"
Enter
Sleep 1
Type "find data -type f -size +1M | wc -l"
Enter
Sleep 1
Type "du -hs data"
Enter
Sleep 1
Type "head -c 50 `find data -type f | head -1`"
Enter
Sleep 1
Hide
Type "rm -rf data"
Enter