-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathwr.html
More file actions
36 lines (36 loc) · 1.44 KB
/
Copy pathwr.html
File metadata and controls
36 lines (36 loc) · 1.44 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>wr - 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>wr</h1>
<h2>NAME</h2>
<p>wr - Open URL/file in browser</p>
<h2>SYNOPSIS</h2>
<pre><code>wr [--help | -h] [url | file]</code></pre>
<h2>DESCRIPTION</h2>
<p>Opens a URL or HTML file in the system's default web browser using Windows <code>explorer</code> command.</p>
<h2>DEPENDENCIES</h2>
<p>Default web browser</p>
<h2>EXAMPLES</h2>
<pre><code>wr https://google.com
wr index.html</code></pre>
<div class="footer"><a href="index.html">Back to index</a></div>
</body>
</html>