This repository has been archived by the owner on Aug 4, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
60 lines (52 loc) · 2.27 KB
/
index.html
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
<!DOCTYPE html>
<html>
<head>
<title>shelltools -- a small collection of file and shell utilities</title>
<link href="css/site.css" rel="stylesheet" />
<head>
<body>
<header>
<h1>shelltools -- a small collection of file and shell utilities</h1>
</header>
<section><h1>shelltools</h1>
<p>Various utilities for simplifying work on the command line.</p>
<ul>
<li><a href="findfile.html">findfile</a> - find files based on prefix, suffix or contained string</li>
<li><a href="finddir.html">finddir</a> - find directories based on prefix, suffix or contained string</li>
<li><a href="mergepath.html">mergepath</a> - prefix, append, clip path variables</li>
<li><a href="range.html">range</a> - emit a range of integers (useful for numbered loops in Bash)</li>
<li><a href="reldate.html">reldate</a> - display a relative date in YYYY-MM-DD format</li>
<li><a href="timefmt.html">timefmt</a> - format a time value based on Golang’s time format language</li>
<li><a href="urlparse.html">urlparse</a> - split a URL into parts</li>
</ul>
<p>Compiled versions are provided for Linux (amd64), Mac OS X (amd64),
Windows 10 (amd64) and Raspbian (ARM6, ARM7). See <a href="https://github.com/rsdoiel/shelltools">https://github.com/rsdoiel/shelltools</a>.</p>
<p>Use the utilities try “-help” option for a full list of options.</p>
<h2>Installation</h2>
<p><em>shelltools</em> is go get-able.</p>
<pre><code> go get github.com/rsdoiel/shelltools/...
</code></pre>
<p>Or see <a href="install.html">INSTALL.md</a> for details for installing
compiled versions of the programs.</p>
</section>
<nav><ul>
<li><a href="/">home</a></li>
<li><a href="./">README</a></li>
<li><a href="license.html">LICENSE</a></li>
<li><a href="install.html">INSTALL</a></li>
<li><a href="findfile.html">findfile</a></li>
<li><a href="finddir.html">finddir</a></li>
<li><a href="mergepath.html">mergepath</a></li>
<li><a href="range.html">range</a></li>
<li><a href="reldate.html">reldate</a></li>
<li><a href="timefmt.html">timefmt</a></li>
<li><a href="urlparse.html">urlparse</a></li>
<li><a href="https://github.com/rsdoiel/shelltools">Github</a></li>
</ul>
</nav>
<footer>
copyright © 2014-2017 R. S. Doiel<br />
see: <a href="license.html">LICENSE</a>
</footer>
</body>
</html>