[haiku] Re: Missing menu items in Deskbar

  • From: "Alexander G. M. Smith" <agmsmith@xxxxxx>
  • To: haiku@xxxxxxxxxxxxx
  • Date: Fri, 15 Jan 2016 09:25:29 -0500 EST

Mark Hellegers wrote on Thu, 14 Jan 2016 23:17:14 +0100 CET:

Is it possible to automatically run checkfs every day and e-mail the
results?  I used to have some kind of task scheduler on BeOS/Zeta that
could run a binary at a specified interval, but not sure something like
that exists for Haiku.

Does the launch daemon do that?  You could use one of the "cron" programs to
do that sort of thing (AGMSScriptOCron could do it).  Or you could write a
Bash script with a time delayed loop to do it, though I haven't tried it,
it would look something like this:

#!/bin/sh
i=0
while ((i < 10000))
do
  echo "`date` #$i"
  sync
  checkfs /boot | mail -s "Daily Disk Check" joe@xxxxxxxxxxx
  sleep 1d
  i=$(($i + 1))
done

- Alex


Other related posts: