-
Notifications
You must be signed in to change notification settings - Fork 0
/
cheatsheet.html
119 lines (112 loc) · 2.63 KB
/
cheatsheet.html
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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
<!DOCTYPE html>
<html>
<head>
<title>Signal Bot Commands</title>
</head>
<body>
<h1>Signal Bot Commands</h1>
<h2>General Commands</h2>
<table border="1">
<tr>
<th>Command</th>
<th>Description</th>
</tr>
<tr>
<td><code>help</code></td>
<td>Display available commands.</td>
</tr>
</table>
<h2>Torrent Commands</h2>
<table border="1">
<tr>
<th>Command</th>
<th>Description</th>
</tr>
<tr>
<td><code>magnet:?xt=...</code></td>
<td>Download torrent using a magnet link.</td>
</tr>
<tr>
<td><code>status</code></td>
<td>Check the status of current torrents.</td>
</tr>
<tr>
<td><code>delete_all</code></td>
<td>Delete all torrents.</td>
</tr>
<tr>
<td><code>delete_2,3</code></td>
<td>Delete torrents 2 and 3.</td>
</tr>
</table>
<h2>LaTeX Commands</h2>
Only <strong>one zip file</strong> can be converted to a PDF at a time. Attach the zip file to the message and specify which file should be converted, e.g., <code>main.tex</code>.
<table border="1">
<thead>
<tr>
<th>Attachment</th>
<th>Text</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td>file.zip</td>
<td>main.tex</td>
<td>Convert main.tex from file.zip into a pdf</td>
</tr>
<tr>
<td>file.zip</td>
<td>main.tex log</td>
<td>Converts main.tex to pdf and sends log file</td>
</tr>
</tbody>
</table>
<h2>Show and Delete Files</h2>
<table border="1">
<tr>
<th>Command</th>
<th>Description</th>
</tr>
<tr>
<td><code>files_</code></td>
<td>Show your files and folders.</td>
</tr>
<tr>
<td><code>files_delete_1</code></td>
<td>Delete file/folder number 1.</td>
</tr>
<tr>
<td><code>files_delete_1-3,5</code></td>
<td>Delete file/folder number 1-3, and 5.</td>
</tr>
<tr>
<td><code>files_delete_all</code></td>
<td>Delete all files and folders.</td>
</tr>
</table>
<h2>Download Files</h2>
<table border="1">
<tr>
<th>Command</th>
<th>Description</th>
</tr>
<tr>
<td><code>download_1</code></td>
<td>Download file/folder number 1.</td>
</tr>
<tr>
<td><code>download_1-3,5</code></td>
<td>Download file/folder number 1-3, and 5.</td>
</tr>
<tr>
<td><code>download_status</code></td>
<td>Check Status of SSH and Gunicorn.</td>
</tr>
<tr>
<td><code>download_stop</code></td>
<td>Stop sharing the link.</td>
</tr>
</table>
</body>
</html>