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
/
finddir.html
55 lines (50 loc) · 1.86 KB
/
finddir.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
<!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>finddir</h1>
<p>Lists directories recursively. Can be constrained by prefix, suffix or
basename contents (e.g. contains).</p>
<h2>USAGE</h2>
<pre><code> finddir [OPTIONS] [TARGET_FILENAME] [DIRECTORIES_TO_SEARCH]
</code></pre>
<p>Finds directories based on matching prefix, suffix or contained text in base filename.</p>
<pre><code> -c, -contains find file(s) based on basename containing text
-d, -depth limit depth of directories walked
-e, -error-stop Stop walk on file system errors (e.g. permissions)
-f, -full-path list full path for files found
-h, -help display this help message
-l, -license display license information
-m, -mod-time display file modification time before the path
-p, -prefix find file(s) based on basename prefix
-s, -suffix find file(s) based on basename suffix
-v, -version display version message
</code></pre>
</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>