Search results

  1. lokli

    file monitoring without polling

    "tail -F */out" find files, that already present. my point is that i want to monitor files, that are not present yet. for example i can issue tail -F some_channel/outwhile there is no file "some_channel/out". but these doesn't work with "*/out" i haven't found a way to look for...
  2. lokli

    nvidia drivers vs intel drivers on thin clients

    can i somehow find out what files are replaced by the port installation?
  3. lokli

    nvidia drivers vs intel drivers on thin clients

    I have two thin clients, getting their root from the same rootdir. first client is Asus EEEpc with intel video, while the second is a box with NVidia card. If I install both intel and nv drivers for my thin system, everything works just fine. but nv's perfomance in playing HDvideo is quite...
  4. lokli

    file monitoring without polling

    thanks, it seems tail is what i really need. i'am writing something like a wrapper to irc/ii for personal use so, i'am trying to make tail read the "out" files tail -F some_file [another_file] this command cliams to show the file, even if it doesn't exist (it shows after creation) , quite a...
  5. lokli

    file monitoring without polling

    Is there a way to monitor my filesystem without polling every second? I'am lookling for a way to watch for new files under some directory and watch for file changes, and it should be a real-time solution. It seems to me, that kqueue is the key to this, but I haven't found a program in ports...
Back
Top