#!/bin/sh # Copyright © 2016 Mattias Andrée # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . # DEPENDENCIES: findutils, coreutils, sed, util-linux, linux, sh # Frequent international traveller? Set up cron to run this every # now and then. It will restart all your instances of radharc, and # if you have a custom script in $PATH named radharc (as your should # have) that figures out your location and starts radharc, radharc # will br aware of your no location. # Close all file descriptors (except stderr,) so that radharc does not inherity any. for fd in $(ls -1 /dev/fd/); do if [ ! "$fd" = 2 ]; then eval "exec ${fd}<&-"; fi done # Restart all instances of radharc. for pid in pgrep -x radharc; do # Open environ and cmdline and be sure that they we successfully opened. exec 3/dev/null 2>/dev/null &) done