Virtual Private Server (VPS) Hosting provided by Central Point Networking cpnllc.com
For some reason, the "Nodelist" and "Recent Callers" features are not working.
| Sysop: | Ray Quinn |
|---|---|
| Location: | Visalia, CA |
| Users: | 60 |
| Nodes: | 10 (0 / 10) |
| Uptime: | 03:57:35 |
| Calls: | 12 |
| Files: | 12,929 |
| Messages: | 98,349 |
Check out the US 99 menu above for links to information about US Highway 99, after which the US 99 BBS is named.
Be sure to click on the Amateur Radio menu item above for packet BBSes, packet software, packet organizations, as well as packet how-to's. Also included is links to local and some not-so-local Amateur Radio Clubs.
trying to setup a crontab job, I have a sh file that runs
./fidopoll 0:0/000
./mailin.sh
./mailout.sh
I'd like to know how to add the command to open a terminal window then
run those commands in the .sh file.
trying to setup a crontab job, I have a sh file that runs
./fidopoll 0:0/000
./mailin.sh
./mailout.sh
I'd like to know how to add the command to open a terminal window then
run those commands in the .sh file.
I'd like to know how to add the command to open a terminal window then run those commands in the .sh file.
I have never done that and don't know if it's possible. Cron is meant to run commands unattended so they are not seen.
I have never done that and don't know if it's possible. Cron is
meant to run commands unattended so they are not seen.
It has been some time since I last did something of this sort, but you should set the proper DISPLAY variable in cron and authorize the cron
user to use that display.
I think you can do it, but it sounds very fragile to me. Plus, if you don't have a working display by the time cron triggers, it all will
crash.
If invoking the scripts from a graphical interface was a must, I would forget about cron and use my desktop environment to load a while loop
that called the commands periodically.
Cron doesn't have the paths that your regular user has so it's always a good idea to use the full path to the executables when running from cron.
Cron doesn't have the paths that your regular user has so it's
always a good idea to use the full path to the executables when
running from cron.
Hay thanks, I'll keep screwing around and see what I come up with.