Sean Macdonaldcloudwhisperer.hashnode.dev·Mar 17, 2024Gorph is a Recursive PHile watcherIn order to power a project of mine, I needed a cross-platform file-watcher. I noticed that fsnotify offers the broadest support, but does not offer recursive watching. Gorph augments fsnotify, providing this functionality using doublestar, providing...Go
Alvaro Lealterminalprogrammer.com·Aug 16, 2023How to create a systemd file exchange serviceIn this article, we are going to go over an example for defining a systemd service that will allow the user to exchange files with another machine. It will work by specifying a couple of folders for sending and receiving files. These files will be ex...43 readsBash
Bryandevlogbook.hashnode.dev·Sep 30, 2022Auto copy a file to the newly created folder with a specific name in LinuxWe have a file readme.txt in /home/ and want it to be copied over to all new folders created within /home/johndoe/ with names junk or secret Requirement Have inotifywait installed: sudo apt install inotify-tools Script Create a bash file copier.sh w...1 like·162 readsServersinotifywait