blob: 36ff5c7a0ffc61a4f09ccf3e2b5cc969fbaac02a (
plain)
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
|
<!doctype html>
<html lang="EN">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="/style.css" />
<title>Shellcheck your bash scripts</title>
</head>
<body>
<header>
<h1>Bloggings</h1>
<a href="/index.php">Back</a>
<hr />
</header>
<main>
<article>
<h2>Shellcheck your bash scripts</h2>
<h3>2025-05-14</h3>
<h4>Shellcheck is a handy online and command line tool</h4>
<p>
I've started using this tool to clean up my scripts. Testing via the web
interface displays links to explanations of the errors or warnings found.
</p>
<p><a href="https://www.shellcheck.net/">https://www.shellcheck.net/</a></p>
<pre>yay -Ss shellcheck</pre>
</article>
</main>
<footer>
<p> </p>
<hr />
<p>§</p>
</footer>
</body>
</html>
|