feat: HTML man pages
This commit is contained in:
@@ -0,0 +1,243 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<meta name="description" content="MontaukOS Man Pages">
|
||||
<title>Man Pages - MontaukOS</title>
|
||||
<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=Open+Sans:wght@400;600&display=swap" rel="stylesheet">
|
||||
<style>
|
||||
body {
|
||||
font-family: 'Open Sans', Arial, sans-serif;
|
||||
max-width: 960px;
|
||||
margin: 0 auto;
|
||||
padding: 1em;
|
||||
line-height: 1.5;
|
||||
display: flex;
|
||||
gap: 2em;
|
||||
}
|
||||
p { margin: 0 0 0.5em; }
|
||||
h2 { margin: 0.5em 0; }
|
||||
.sidebar {
|
||||
width: 160px;
|
||||
flex-shrink: 0;
|
||||
}
|
||||
.sidebar ul {
|
||||
list-style: none;
|
||||
padding: 0;
|
||||
}
|
||||
.sidebar li {
|
||||
margin: 0.5em 0;
|
||||
}
|
||||
.sidebar a {
|
||||
color: #0066CC;
|
||||
text-decoration: none;
|
||||
font-weight: 600;
|
||||
}
|
||||
.sidebar a:hover {
|
||||
color: #004499;
|
||||
text-decoration: underline;
|
||||
}
|
||||
.sidebar .current {
|
||||
color: #004499;
|
||||
}
|
||||
.sidebar hr {
|
||||
border: none;
|
||||
border-top: 1px solid #999;
|
||||
margin: 0.75em 0;
|
||||
}
|
||||
.main {
|
||||
flex: 1;
|
||||
min-width: 0;
|
||||
}
|
||||
a { color: #0000EE; }
|
||||
a:visited { color: #0066CC; }
|
||||
hr { border-style: solid; border-width: 1px 0 0 0; border-color: #999; }
|
||||
.box {
|
||||
border: 1px solid #999;
|
||||
padding: 0.5em;
|
||||
margin: 0.5em 0;
|
||||
}
|
||||
.doc-list {
|
||||
list-style: none;
|
||||
padding: 0;
|
||||
}
|
||||
.doc-list li {
|
||||
margin: 0.75em 0;
|
||||
}
|
||||
.doc-list a {
|
||||
font-weight: 600;
|
||||
font-family: monospace;
|
||||
}
|
||||
.doc-list p {
|
||||
margin: 0.25em 0 0 1.5em;
|
||||
color: #555;
|
||||
font-size: 0.9em;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<div class="sidebar">
|
||||
<ul>
|
||||
<li><a href="../../index.html">Home</a></li>
|
||||
<li><a href="../index.html">Documentation</a></li>
|
||||
</ul>
|
||||
<hr>
|
||||
<ul>
|
||||
<li><a href="index.html" class="current">Man Pages</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<div class="main">
|
||||
<div class="center">
|
||||
<h1>Man Pages</h1>
|
||||
</div>
|
||||
|
||||
<hr>
|
||||
|
||||
<p>
|
||||
Manual pages for MontaukOS, viewable in-system with the <a href="man.html">man(1)</a> command.
|
||||
</p>
|
||||
|
||||
<h2>User Commands (Section 1)</h2>
|
||||
|
||||
<ul class="doc-list">
|
||||
|
||||
<li>
|
||||
<a href="intro.html">intro(1)</a>
|
||||
<p>introduction to MontaukOS userspace</p>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="shell.html">shell(1)</a>
|
||||
<p>MontaukOS interactive command shell</p>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="init.html">init(1)</a>
|
||||
<p>MontaukOS init system</p>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="dhcp.html">dhcp(1)</a>
|
||||
<p>obtain network configuration via DHCP</p>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="fetch.html">fetch(1)</a>
|
||||
<p>HTTP/HTTPS client for MontaukOS</p>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="ping.html">ping(1)</a>
|
||||
<p>send ICMP echo requests</p>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="nslookup.html">nslookup(1)</a>
|
||||
<p>DNS hostname lookup</p>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="fontscale.html">fontscale(1)</a>
|
||||
<p>get or set terminal font scale</p>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="edit.html">edit(1)</a>
|
||||
<p>text editor for MontaukOS</p>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="man.html">man(1)</a>
|
||||
<p>display manual pages</p>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="printctl.html">printctl(1)</a>
|
||||
<p>configure printers and submit print jobs</p>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="printd.html">printd(1)</a>
|
||||
<p>MontaukOS userspace print spooler daemon</p>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="wiki.html">wiki(1)</a>
|
||||
<p>Wikipedia article viewer for MontaukOS</p>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
|
||||
<h2>System Calls (Section 2)</h2>
|
||||
|
||||
<ul class="doc-list">
|
||||
|
||||
<li>
|
||||
<a href="syscalls.html">syscalls(2)</a>
|
||||
<p>overview of MontaukOS system calls</p>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="spawn.html">spawn(2)</a>
|
||||
<p>create and wait for processes</p>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="file.html">file(2)</a>
|
||||
<p>file I/O system calls</p>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="framebuffer.html">framebuffer(2)</a>
|
||||
<p>direct framebuffer access</p>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
|
||||
<h2>Library Functions (Section 3)</h2>
|
||||
|
||||
<ul class="doc-list">
|
||||
|
||||
<li>
|
||||
<a href="malloc.html">malloc(3)</a>
|
||||
<p>userspace heap allocation</p>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
|
||||
<h2>File Formats / Reference (Section 5)</h2>
|
||||
|
||||
<ul class="doc-list">
|
||||
|
||||
<li>
|
||||
<a href="tls-errors.html">tls-errors(5)</a>
|
||||
<p>BearSSL TLS and X.509 error codes</p>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
|
||||
<h2>Miscellaneous (Section 7)</h2>
|
||||
|
||||
<ul class="doc-list">
|
||||
|
||||
<li>
|
||||
<a href="legal.html">legal(7)</a>
|
||||
<p>MontaukOS legal/copyright information</p>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
|
||||
<hr>
|
||||
|
||||
<div class="center">
|
||||
<a href="../index.html">Back to Documentation Index</a>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user