-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
511 lines (462 loc) · 22.4 KB
/
index.html
File metadata and controls
511 lines (462 loc) · 22.4 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
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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
<!DOCTYPE html>
<html lang="en" data-theme="dark">
<head>
<meta charset="UTF-8">
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-DBT6MFWSC9"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-DBT6MFWSC9');
</script>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>mkunit - Create systemd unit files in seconds</title>
<meta name="description" content="mkunit is a CLI tool that takes the pain out of writing systemd unit files. Interactive or scriptable. One command, done.">
<meta name="keywords" content="systemd, unit file, service, timer, linux, cli, generator, automation, devops">
<meta name="author" content="uRadical">
<meta name="robots" content="index, follow">
<link rel="canonical" href="https://mkunit.sh/">
<!-- Open Graph -->
<meta property="og:type" content="website">
<meta property="og:site_name" content="mkunit">
<meta property="og:title" content="mkunit - Create systemd unit files in seconds">
<meta property="og:description" content="mkunit is a CLI tool that takes the pain out of writing systemd unit files. Create services, timers, sockets, and more. Interactive or scriptable. One command, done.">
<meta property="og:image" content="https://mkunit.sh/assets/og-image.png">
<meta property="og:url" content="https://mkunit.sh">
<meta property="article:author" content="uRadical">
<!-- Twitter -->
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="mkunit - Create systemd unit files in seconds">
<meta name="twitter:description" content="mkunit is a CLI tool that takes the pain out of writing systemd unit files. Create services, timers, sockets, and more. Interactive or scriptable. One command, done.">
<meta name="twitter:image" content="https://mkunit.sh/assets/og-image.png">
<!-- Favicon -->
<link rel="icon" type="image/svg+xml" href="/assets/favicon.svg">
<!-- Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500;600&display=swap" rel="stylesheet">
<!-- Tailwind CSS -->
<script src="https://cdn.tailwindcss.com"></script>
<!-- Prism.js for syntax highlighting -->
<link href="https://cdnjs.cloudflare.com/ajax/libs/prism/1.29.0/themes/prism-tomorrow.min.css" rel="stylesheet">
<!-- Custom Styles -->
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<!-- Navigation -->
<nav class="nav">
<div class="nav-container">
<a href="/" class="nav-logo">
<span class="nav-logo-icon">$</span> mkunit
</a>
<div class="nav-links">
<a href="/docs/" class="nav-link">Docs</a>
<a href="/docs/guides/installation.html" class="nav-link">Install</a>
<a href="https://github.com/uradical/mkunit" class="nav-link" target="_blank" rel="noopener">GitHub</a>
</div>
<button id="mobile-menu-btn" class="mobile-menu-btn" aria-label="Toggle menu" aria-expanded="false">
<svg width="24" height="24" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 6h16M4 12h16M4 18h16"></path>
</svg>
</button>
</div>
<div id="mobile-menu" class="mobile-menu">
<a href="/docs/">Documentation</a>
<a href="/docs/guides/installation.html">Installation</a>
<a href="https://github.com/uradical/mkunit" target="_blank" rel="noopener">GitHub</a>
</div>
</nav>
<!-- Hero Section -->
<section class="hero">
<div class="hero-container">
<h1>Create systemd units in seconds, not minutes</h1>
<p class="hero-subtitle">
mkunit is a CLI tool that takes the pain out of writing systemd unit files.
Interactive or scriptable. One command, done.
</p>
<div class="hero-buttons">
<a href="/docs/guides/installation.html" class="btn btn-primary">
Get Started
<svg width="20" height="20" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M13 7l5 5m0 0l-5 5m5-5H6"></path>
</svg>
</a>
<a href="https://github.com/uradical/mkunit" class="btn btn-secondary" target="_blank" rel="noopener">
<svg width="20" height="20" fill="currentColor" viewBox="0 0 24 24">
<path d="M12 0C5.37 0 0 5.37 0 12c0 5.31 3.435 9.795 8.205 11.385.6.105.825-.255.825-.57 0-.285-.015-1.23-.015-2.235-3.015.555-3.795-.735-4.035-1.41-.135-.345-.72-1.41-1.23-1.695-.42-.225-1.02-.78-.015-.795.945-.015 1.62.87 1.845 1.23 1.08 1.815 2.805 1.305 3.495.99.105-.78.42-1.305.765-1.605-2.67-.3-5.46-1.335-5.46-5.925 0-1.305.465-2.385 1.23-3.225-.12-.3-.54-1.53.12-3.18 0 0 1.005-.315 3.3 1.23.96-.27 1.98-.405 3-.405s2.04.135 3 .405c2.295-1.56 3.3-1.23 3.3-1.23.66 1.65.24 2.88.12 3.18.765.84 1.23 1.905 1.23 3.225 0 4.605-2.805 5.625-5.475 5.925.435.375.81 1.095.81 2.22 0 1.605-.015 2.895-.015 3.3 0 .315.225.69.825.57A12.02 12.02 0 0024 12c0-6.63-5.37-12-12-12z"></path>
</svg>
View on GitHub
</a>
</div>
<div class="hero-terminal">
<div class="terminal">
<div class="terminal-header">
<span class="terminal-dot red"></span>
<span class="terminal-dot yellow"></span>
<span class="terminal-dot green"></span>
</div>
<div class="terminal-body">
<span class="terminal-prompt">$ </span><span class="terminal-command">mkunit service myapp --exec "./server" --restart on-failure --install</span><br>
<span class="terminal-output">Created myapp.service</span><br>
<span class="terminal-output">Installed to ~/.config/systemd/user/myapp.service</span><br>
<span class="terminal-output">Run: systemctl --user start myapp</span>
</div>
</div>
</div>
</div>
</section>
<!-- Problem Section -->
<section class="section section-alt">
<div class="section-container">
<div class="section-header">
<h2>Writing systemd units shouldn't require a manual</h2>
</div>
<div class="pain-points">
<div class="pain-point">
<span class="pain-point-icon">
<svg width="24" height="24" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M8.228 9c.549-1.165 2.03-2 3.772-2 2.21 0 4 1.343 4 3 0 1.4-1.278 2.575-3.006 2.907-.542.104-.994.54-.994 1.093m0 3h.01M21 12a9 9 0 11-18 0 9 9 0 0118 0z"></path>
</svg>
</span>
<p>Can't remember the INI syntax? Neither can we.</p>
</div>
<div class="pain-point">
<span class="pain-point-icon">
<svg width="24" height="24" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M3 7v10a2 2 0 002 2h14a2 2 0 002-2V9a2 2 0 00-2-2h-6l-2-2H5a2 2 0 00-2 2z"></path>
</svg>
</span>
<p>Was it /etc/systemd/system or /usr/lib/systemd/system?</p>
</div>
<div class="pain-point">
<span class="pain-point-icon">
<svg width="24" height="24" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 4v5h.582m15.356 2A8.001 8.001 0 004.582 9m0 0H9m11 11v-5h-.581m0 0a8.003 8.003 0 01-15.357-2m15.357 2H15"></path>
</svg>
</span>
<p>daemon-reload, enable, start... in what order?</p>
</div>
<div class="pain-point">
<span class="pain-point-icon">
<svg width="24" height="24" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M16 7a4 4 0 11-8 0 4 4 0 018 0zM12 14a7 7 0 00-7 7h14a7 7 0 00-7-7z"></path>
</svg>
</span>
<p>User service or system service? What's the path again?</p>
</div>
</div>
</div>
</section>
<!-- Solution Section -->
<section class="section">
<div class="section-container">
<div class="section-header">
<h2>mkunit handles the details</h2>
<p>Focus on what your service does, not how systemd wants it configured.</p>
</div>
<div class="features-grid">
<div class="feature-card">
<div class="feature-icon">
<svg width="24" height="24" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M19 11H5m14 0a2 2 0 012 2v6a2 2 0 01-2 2H5a2 2 0 01-2-2v-6a2 2 0 012-2m14 0V9a2 2 0 00-2-2M5 11V9a2 2 0 012-2m0 0V5a2 2 0 012-2h6a2 2 0 012 2v2M7 7h10"></path>
</svg>
</div>
<h3>All unit types</h3>
<p>Services, timers, paths, sockets, mounts, and targets. Everything you need.</p>
</div>
<div class="feature-card">
<div class="feature-icon">
<svg width="24" height="24" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M8 9l3 3-3 3m5 0h3M5 20h14a2 2 0 002-2V6a2 2 0 00-2-2H5a2 2 0 00-2 2v12a2 2 0 002 2z"></path>
</svg>
</div>
<h3>Interactive or scripted</h3>
<p>Missing a flag? We'll ask. Have all flags? We won't bother you.</p>
</div>
<div class="feature-card">
<div class="feature-icon">
<svg width="24" height="24" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M13 10V3L4 14h7v7l9-11h-7z"></path>
</svg>
</div>
<h3>Smart defaults</h3>
<p>Sensible restart policies, paths, and dependencies out of the box.</p>
</div>
<div class="feature-card">
<div class="feature-icon">
<svg width="24" height="24" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 12l2 2 4-4m5.618-4.016A11.955 11.955 0 0112 2.944a11.955 11.955 0 01-8.618 3.04A12.02 12.02 0 003 9c0 5.591 3.824 10.29 9 11.622 5.176-1.332 9-6.03 9-11.622 0-1.042-.133-2.052-.382-3.016z"></path>
</svg>
</div>
<h3>Validation</h3>
<p>Warns about relative paths, missing executables, and common mistakes.</p>
</div>
<div class="feature-card">
<div class="feature-icon">
<svg width="24" height="24" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M20 7l-8-4-8 4m16 0l-8 4m8-4v10l-8 4m0-10L4 7m8 4v10M4 7v10l8 4"></path>
</svg>
</div>
<h3>One binary</h3>
<p>No runtime dependencies. Works on any Linux distro.</p>
</div>
<div class="feature-card">
<div class="feature-icon">
<svg width="24" height="24" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 15v2m-6 4h12a2 2 0 002-2v-6a2 2 0 00-2-2H6a2 2 0 00-2 2v6a2 2 0 002 2zm10-10V7a4 4 0 00-8 0v4h8z"></path>
</svg>
</div>
<h3>Security hardening</h3>
<p>Built-in security options to sandbox your services properly.</p>
</div>
</div>
</div>
</section>
<!-- How It Works Section -->
<section class="section section-alt">
<div class="section-container">
<div class="section-header">
<h2>How it works</h2>
<p>Three steps. That's it.</p>
</div>
<div class="how-it-works">
<div class="step">
<div class="step-number">1</div>
<h3>Create</h3>
<div class="terminal">
<div class="terminal-header">
<span class="terminal-dot red"></span>
<span class="terminal-dot yellow"></span>
<span class="terminal-dot green"></span>
</div>
<div class="terminal-body">
<span class="terminal-prompt">$ </span><span class="terminal-command">mkunit service myapp \</span><br>
<span class="terminal-command"> --exec "./server"</span>
</div>
</div>
</div>
<div class="step">
<div class="step-number">2</div>
<h3>Install</h3>
<div class="terminal">
<div class="terminal-header">
<span class="terminal-dot red"></span>
<span class="terminal-dot yellow"></span>
<span class="terminal-dot green"></span>
</div>
<div class="terminal-body">
<span class="terminal-prompt">$ </span><span class="terminal-command">mkunit service myapp \</span><br>
<span class="terminal-command"> --exec "./server" \</span><br>
<span class="terminal-command"> --install</span>
</div>
</div>
</div>
<div class="step">
<div class="step-number">3</div>
<h3>Manage</h3>
<div class="terminal">
<div class="terminal-header">
<span class="terminal-dot red"></span>
<span class="terminal-dot yellow"></span>
<span class="terminal-dot green"></span>
</div>
<div class="terminal-body">
<span class="terminal-prompt">$ </span><span class="terminal-command">mkunit status myapp</span><br>
<span class="terminal-prompt">$ </span><span class="terminal-command">mkunit logs myapp -f</span><br>
<span class="terminal-prompt">$ </span><span class="terminal-command">mkunit edit myapp</span>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Unit Types Section -->
<section class="section">
<div class="section-container">
<div class="section-header">
<h2>All the unit types you need</h2>
<p>Create any type of systemd unit with a single command.</p>
</div>
<div class="unit-types-grid">
<a href="/docs/commands/service.html" class="unit-type">
<div class="unit-type-icon">
<svg width="20" height="20" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 12h14M5 12a2 2 0 01-2-2V6a2 2 0 012-2h14a2 2 0 012 2v4a2 2 0 01-2 2M5 12a2 2 0 00-2 2v4a2 2 0 002 2h14a2 2 0 002-2v-4a2 2 0 00-2-2m-2-4h.01M17 16h.01"></path>
</svg>
</div>
<div>
<h4>Service</h4>
<p>Long-running daemons and one-shot scripts</p>
</div>
</a>
<a href="/docs/commands/timer.html" class="unit-type">
<div class="unit-type-icon">
<svg width="20" height="20" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 8v4l3 3m6-3a9 9 0 11-18 0 9 9 0 0118 0z"></path>
</svg>
</div>
<div>
<h4>Timer</h4>
<p>Scheduled tasks (cron replacement)</p>
</div>
</a>
<a href="/docs/commands/path.html" class="unit-type">
<div class="unit-type-icon">
<svg width="20" height="20" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M15 12a3 3 0 11-6 0 3 3 0 016 0z"></path>
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M2.458 12C3.732 7.943 7.523 5 12 5c4.478 0 8.268 2.943 9.542 7-1.274 4.057-5.064 7-9.542 7-4.477 0-8.268-2.943-9.542-7z"></path>
</svg>
</div>
<div>
<h4>Path</h4>
<p>Trigger on file/directory changes</p>
</div>
</a>
<a href="/docs/commands/socket.html" class="unit-type">
<div class="unit-type-icon">
<svg width="20" height="20" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M8.111 16.404a5.5 5.5 0 017.778 0M12 20h.01m-7.08-7.071c3.904-3.905 10.236-3.905 14.141 0M1.394 9.393c5.857-5.857 15.355-5.857 21.213 0"></path>
</svg>
</div>
<div>
<h4>Socket</h4>
<p>Socket activation for on-demand services</p>
</div>
</a>
<a href="/docs/commands/mount.html" class="unit-type">
<div class="unit-type-icon">
<svg width="20" height="20" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 7v10c0 2.21 3.582 4 8 4s8-1.79 8-4V7M4 7c0 2.21 3.582 4 8 4s8-1.79 8-4M4 7c0-2.21 3.582-4 8-4s8 1.79 8 4"></path>
</svg>
</div>
<div>
<h4>Mount</h4>
<p>Filesystem mounts managed by systemd</p>
</div>
</a>
<a href="/docs/commands/target.html" class="unit-type">
<div class="unit-type-icon">
<svg width="20" height="20" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M17 20h5v-2a3 3 0 00-5.356-1.857M17 20H7m10 0v-2c0-.656-.126-1.283-.356-1.857M7 20H2v-2a3 3 0 015.356-1.857M7 20v-2c0-.656.126-1.283.356-1.857m0 0a5.002 5.002 0 019.288 0M15 7a3 3 0 11-6 0 3 3 0 016 0z"></path>
</svg>
</div>
<div>
<h4>Target</h4>
<p>Group units together</p>
</div>
</a>
</div>
</div>
</section>
<!-- Interactive Mode Section -->
<section class="section section-alt">
<div class="section-container">
<div class="section-header">
<h2>Don't remember the flags? Just run it.</h2>
<p>mkunit prompts for missing options interactively.</p>
</div>
<div style="max-width: 700px; margin: 0 auto;">
<div class="terminal">
<div class="terminal-header">
<span class="terminal-dot red"></span>
<span class="terminal-dot yellow"></span>
<span class="terminal-dot green"></span>
</div>
<div class="terminal-body">
<span class="terminal-prompt">$ </span><span class="terminal-command">mkunit service myapp</span><br><br>
<span class="terminal-output">Service name: </span><span class="terminal-command">myapp</span><br>
<span class="terminal-output">Command to run: </span><span class="terminal-command">./server</span><br>
<span class="terminal-output">Working directory [/home/alan/myapp]: </span><br>
<span class="terminal-output">Restart policy [on-failure]: </span><br>
<span class="terminal-output">User service or system? [user]: </span><br><br>
<span class="terminal-output">Created myapp.service</span><br>
<span class="terminal-output">Install now? [Y/n]: </span><span class="terminal-command">y</span><br>
<span class="terminal-output">Installed to ~/.config/systemd/user/myapp.service</span>
</div>
</div>
</div>
</div>
</section>
<!-- Comparison Section -->
<section class="section">
<div class="section-container">
<div class="section-header">
<h2>Before and after</h2>
<p>See the difference mkunit makes.</p>
</div>
<div class="comparison">
<div class="comparison-card">
<div class="comparison-header before">Before (manual)</div>
<div class="comparison-body">
<pre class="language-ini"><code>[Unit]
Description=myapp service
After=network.target
[Service]
Type=simple
ExecStart=/home/alan/myapp/server
WorkingDirectory=/home/alan/myapp
Restart=on-failure
RestartSec=5
[Install]
WantedBy=default.target</code></pre>
</div>
<div class="comparison-footer">
Then: sudo cp myapp.service ~/.config/systemd/user/<br>
systemctl --user daemon-reload<br>
systemctl --user enable myapp<br>
systemctl --user start myapp
</div>
</div>
<div class="comparison-card">
<div class="comparison-header after">After (mkunit)</div>
<div class="comparison-body">
<pre class="language-bash"><code>mkunit service myapp \
--exec "./server" \
--install \
--start</code></pre>
</div>
<div class="comparison-footer">
That's it.
</div>
</div>
</div>
</div>
</section>
<!-- Installation Section -->
<section class="section section-alt">
<div class="section-container">
<div class="section-header">
<h2>Installation</h2>
<p>Get started in seconds.</p>
</div>
<div style="max-width: 600px; margin: 0 auto;">
<div class="terminal">
<div class="terminal-header">
<span class="terminal-dot red"></span>
<span class="terminal-dot yellow"></span>
<span class="terminal-dot green"></span>
</div>
<div class="terminal-body">
<span class="terminal-prompt">$ </span><span class="terminal-command">cargo install mkunit</span>
</div>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="footer">
<div class="footer-container">
<p class="footer-tagline">Made for developers who have better things to do than memorize systemd syntax.</p>
<a href="https://uradical.io" class="footer-branding" target="_blank" rel="noopener">
<img src="/assets/uradical.png" alt="uRadical" class="footer-logo">
</a>
</div>
</footer>
<!-- Scripts -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/prism/1.29.0/prism.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/prism/1.29.0/components/prism-bash.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/prism/1.29.0/components/prism-ini.min.js"></script>
<script src="js/main.js"></script>
</body>
</html>