{"id":13575543,"url":"https://github.com/proger/fsevent_watch","last_synced_at":"2026-02-23T04:32:54.226Z","repository":{"id":10181458,"uuid":"12268489","full_name":"proger/fsevent_watch","owner":"proger","description":"simple but awesome OS X FSEvents client","archived":false,"fork":false,"pushed_at":"2023-02-19T19:17:16.000Z","size":22,"stargazers_count":52,"open_issues_count":3,"forks_count":7,"subscribers_count":4,"default_branch":"master","last_synced_at":"2025-10-24T00:52:54.371Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"C","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":"pbakaus/domvas","license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/proger.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null}},"created_at":"2013-08-21T11:31:18.000Z","updated_at":"2025-03-27T01:50:50.000Z","dependencies_parsed_at":"2024-01-14T03:48:43.307Z","dependency_job_id":"efc9aa06-c3cb-4538-b785-2f7882fe372e","html_url":"https://github.com/proger/fsevent_watch","commit_stats":{"total_commits":14,"total_committers":3,"mean_commits":4.666666666666667,"dds":0.1428571428571429,"last_synced_commit":"c3e082058eb2892816be161804c2f4c166290e98"},"previous_names":[],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/proger/fsevent_watch","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/proger%2Ffsevent_watch","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/proger%2Ffsevent_watch/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/proger%2Ffsevent_watch/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/proger%2Ffsevent_watch/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/proger","download_url":"https://codeload.github.com/proger/fsevent_watch/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/proger%2Ffsevent_watch/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29738079,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-23T02:24:00.660Z","status":"ssl_error","status_checked_at":"2026-02-23T02:22:56.087Z","response_time":90,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-08-01T15:01:01.965Z","updated_at":"2026-02-23T04:32:54.206Z","avatar_url":"https://github.com/proger.png","language":"C","funding_links":[],"categories":["C"],"sub_categories":[],"readme":"# fsevent_watch\n\nThe tool allows you to watch filesystem events on a Mac.\n\nThis is a standalone fork the C tool inside https://github.com/thibaudgg/rb-fsevent\nfocused on usability and *composability* with other tools.\n\n## Awesomeness\n\n* `fsevent_watch` has a damn simple parseable output (tab-delimited)\n\n```\n% ./fsevent_watch -F .  # in the mean time i run `make clean fsevent_watch`\n86693279\t0x00010200=[IRemoved]\t/tank/proger/fsevent_watch/main.o\n86693282\t0x00010200=[IRemoved]\t/tank/proger/fsevent_watch/fsevent_watch\n86693291\t0x00011900=[ICreated,IRenamed,IModified]\t/tank/proger/fsevent_watch/cli.o-b995d254\n86693292\t0x00010a00=[IRemoved,IRenamed]\t/tank/proger/fsevent_watch/cli.o\n86693301\t0x00011900=[ICreated,IRenamed,IModified]\t/tank/proger/fsevent_watch/compat.o-b9dbbb8a\n86693302\t0x00010a00=[IRemoved,IRenamed]\t/tank/proger/fsevent_watch/compat.o\n86693305\t0x00010100=[ICreated]\t/tank/proger/fsevent_watch/main.o-2f7870a4\n86693311\t0x00011900=[ICreated,IRenamed,IModified]\t/tank/proger/fsevent_watch/main.o-2f7870a4\n86693312\t0x00010a00=[IRemoved,IRenamed]\t/tank/proger/fsevent_watch/main.o\n86693324\t0x00014d00=[ICreated,IInodeMetaMod,IRenamed,IChangeOwner]\t/tank/proger/fsevent_watch/fsevent_watch.ld_gYfEvE\n86693325\t0x00010a00=[IRemoved,IRenamed]\t/tank/proger/fsevent_watch/fsevent_watch\n```\n\n* `fsevent_watch` does line-buffering so you can even develop the tool with itself!\n\n```\n% ./fsevent_watch -F . | egrep --line-buffered '\\.[ch]$' | xargs -t -n1 -I% make\nmake\nclang -c -DCLI_VERSION=\"\\\"f785a34\\\"\" -Wno-deprecated-declarations main.c -o main.o\nclang -framework CoreFoundation -framework CoreServices cli.o compat.o main.o -o fsevent_watch\nmake\nmake: `fsevent_watch' is up to date.\nmake\nmake: `fsevent_watch' is up to date.\n^C\n```\n\n* or, for example, authoring a Markdown file with vim and redcarpet\n\n```\n% fsevent_watch -F | grep --line-buffered README.md'$' | xargs -I% -n1 sh -c 'redcarpet --parse-fenced-code-blocks --parse-autolink --render-prettify README.md \u003e README.html'\n```\n\n## Building\n\n* just run `make install` (and make sure you have a compiler)\n\n## Caveats\n\n* fsevents API does not follow symlinks\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fproger%2Ffsevent_watch","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fproger%2Ffsevent_watch","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fproger%2Ffsevent_watch/lists"}