-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathct.html
More file actions
55 lines (46 loc) · 1.61 KB
/
Copy pathct.html
File metadata and controls
55 lines (46 loc) · 1.61 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>justutil - Just Utility</title>
<style>
body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif; max-width: 800px; margin: 0 auto; padding: 20px; color: #333; line-height: 1.6; }
h1 { border-bottom: 1px solid #ddd; padding-bottom: 8px; }
h2 { color: #444; margin-top: 28px; }
pre { background: #f6f8fa; padding: 12px; border-radius: 4px; overflow-x: auto; }
code { background: #f0f0f0; padding: 2px 5px; border-radius: 3px; }
table { width: 100%; border-collapse: collapse; margin: 12px 0; }
th, td { text-align: left; padding: 6px 10px; border-bottom: 1px solid #eee; }
th { background: #f6f8fa; }
.footer { margin-top: 40px; padding-top: 20px; border-top: 1px solid #ddd; color: #888; font-size: 13px; }
a { color: #0366d6; text-decoration: none; }
a:hover { text-decoration: underline; }
</style>
</head>
<body>
<h1>ct</h1>
<p>Clone terminal instance</p>
<h2>NAME</h2>
<p>ct - Clone terminal instance</p>
<h2>SYNOPSIS</h2>
<pre>ct [--help | -h]</pre>
<h2>DESCRIPTION</h2>
<p>Opens a new Windows Command Prompt window, effectively cloning the current terminal.</p>
<h2>OPTIONS</h2>
<table>
<tr><th>Option</th><th>Description</th></tr>
<tr><td>--help, -h</td><td>Display help information</td></tr>
</table>
<h2>ARGUMENTS</h2>
<p>None.</p>
<h2>DEPENDENCIES</h2>
<ul>
<li>None (built-in Windows commands)</li>
</ul>
<h2>EXAMPLES</h2>
<pre>ct
ct --help</pre>
<div class="footer"><a href="index.html">Back to index</a></div>
</body>
</html>