-
Notifications
You must be signed in to change notification settings - Fork 69
/
index.html
74 lines (74 loc) · 3.15 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
<html><head><meta charset="utf-8" /><meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="" /><meta name="author" content="Maxim Sokhatsky" />
<title>FS</title>
<link rel="stylesheet" href="https://n2o.dev/blank.css" />
<link rel="stylesheet" href="https://n2o.dev/zima.css" />
</head><body><nav>
<a href="https://n2o.dev">DEV</a>
<a href="https://fs.n2o.dev" style="background:#ededed;">FS</a>
<div class="dropdown">
<a onclick="drop()" class="dropbtn">EN</a>
<div id="dropdown" class="dropdown-content">
<a href="https://n2o.dev/deps/fs/man/ua/index.html">UA</a>
<a href="https://fs.n2o.dev/">EN</a>
</div>
</div>
</nav><header>
<a href="https://github.com/synrc/fs"><img src="https://openmoji.org/data/color/svg/1F4C1.svg" /></a>
<h1>FS</h1>
</header><aside>
<article>
<section>
<h3>SYNOPSIS</h3>
<div>FS is a native file system listener for Windows, Linux and Mac
which is using by both Elixir and Synrc communities.</div><br/>
<figure><code> $ mad get fs</code></figure>
</section>
<section>
<h3>MODULES</h3>
<div><ul><li><a href="https://github.com/thibaudgg/rb-fsevent">fsevent</a> (Mac)</li><li><a href="https://github.com/rvoicilas/inotify-tools/wiki">inotify</a> (Linux)</li><li><a href="https://github.com/thekid/inotify-win">inotify-win</a> (Windows)</li></ul></div>
<br />
<div>
NOV 2021 © <a href="https://github.com/proger">proger</a> ISC<br />
VER 7.11 6.1 4.10
</div>
</section>
</article>
</aside><main>
<section>
<a name="intro"></a><h3>INTRO</h3>
<h4>Subscribe to Notifications</h4>
<figure><code>
> fs:start_link(fs_watcher, "/Users/5HT/synrc/fs").
> fs:subscribe(fs_watcher).
> flush().
Shell got {<0.47.0>,{fs,file_event},
{"/Users/5HT/synrc/fs/src/README.md",
[closed,modified]}}
</code></figure>
<h4>Native Events</h4>
<figure><code>
> fs:known_events(fs_watcher).
[mustscansubdirs,userdropped,kerneldropped,eventidswrapped,
historydone,rootchanged,mount,unmount,created,removed,
inodemetamod,renamed,modified,finderinfomod,changeowner,
xattrmod,isfile,isdir,issymlink,ownevent]
</code></figure>
<h4>Sample Scheduler</h4>
<figure><code>
> fs:start_looper().
=INFO REPORT==== 28-Aug-2013::19:36:26 ===
file_event: "/tank/proger/erlfsmon/src/4913" [closed,modified]
</code></figure>
</section>
<section>
<a name="plugin"></a><h3>CONTRIBUTORS</h3>
<div>
<ul><li><a href="https://github.com/5HT">5HT</a> — Namdak Tonpa</li><li><a href="https://github.com/proger">proger</a> — Vlad Ki</li></ul></div>
</section>
</main><footer>
Made with <span class="heart">❤</span> to N2O
</footer>
<script>function drop(){document.getElementById("dropdown").classList.toggle("show");}</script>
</body></html>