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
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>mgmt Manual Page</title>
<style>
body {
font-family: monospace;
background-color: #f4f4f4;
padding: 2em;
color: #222;
}
h1,
h2 {
border-bottom: 1px solid #aaa;
}
code {
background: #eee;
padding: 0.2em 0.4em;
border-radius: 4px;
}
section {
margin-bottom: 2em;
}
</style>
</head>
<body>
<h1>mgmt</h1>
<section>
<h2>NAME</h2>
<p><strong>mgmt</strong> — Management utility command</p>
</section>
<section>
<h2>SYNOPSIS</h2>
<p><code>mgmt [OPTIONS]</code></p>
</section>
<section>
<h2>DESCRIPTION</h2>
<p>
The <code>mgmt</code> command provides scheduling, execution, and remote orchestration
capabilities within the System One operating environment. It serves as the main task
and maintenance utility for NeKernel deployments.
</p>
<ul>
<li>Schedule scripts or tasks for future execution.</li>
<li>Verify device or filesystem integrity.</li>
<li>Manage and automate remote NeKernel machines.</li>
</ul>
</section>
<section>
<h2>OPTIONS</h2>
<ul>
<li><code>-s, --script <FILE></code>: Script to execute</li>
<li><code>-t, --time <HH:MMAM/PM></code>: Time to run the script</li>
<li><code>-d, --day <DAY></code>: Day of the week (e.g., Mon, Tue, Wed)</li>
<li><code>-m, --month <MONTH></code>: Month (e.g., Jan, Feb, Mar)</li>
<li><code>-y, --year <YYYY></code>: Year to schedule task</li>
<li><code>-r, --remote <ADDRESS></code>: Remote machine to manage (optional)</li>
<li><code>-v, --verify</code>: Run integrity checks only</li>
<li><code>-h, --help</code>: Display this help message</li>
</ul>
</section>
<section>
<h2>EXAMPLES</h2>
<pre><code>mgmt -s pgp-update.script -t 2:30PM -d Wed -m Apr -y 2026</code></pre>
<p>Schedules <code>pgp-update.script</code> to run at 2:30PM on Wednesday, April 2026.</p>
</section>
<section>
<h2>RELEASE</h2>
<p>System One — NeKernel</p>
</section>
</body>
</html>
|