# [EMAIL PROTECTED] / 2002-09-26 09:11:55 +0200: > Bryan Cassidy wrote: > >I am using FreeBSD 4.6.2 on my system now. I am new to Unix/Linux > >but liking bsd alot. Anyways. I use fetchmail 5.9.13 and mutt > >1.2.5.1i and I am using Fluxbox as my window manager. I want to > >know what can I add to my .fluxbox/menu config file to launch > >fetchmail right before it launches mutt or vice versa so I don't > >have to run fetchmail by hand each and everytime viewing my e-mails. > >This is what I have in my .fluxbox/menu configuration file now to > >launch mutt [exec] (Mutt) {Eterm -e mutt} Hope I gave enough > >information. > > Would it be possible to write a one-code-liner akin to: > > #!/bin/sh > fetchmail && "eterm -e mutt" || "eterm -e mutt" > > so that first fetchmail is called, and then, no matter how it dies, > mutt is called?
just replace the logical and (&&) with a semicolon. #!/bin/sh fetchmail ; Eterm -e mutt > The most elegant solution would probably be fetchmail daemon mode, but > if you're on a non-flatrate dial-up, you might not want regular polling. start fetchmail in the link-up script, kill it in the link-down script. -- begin 666 nonexistent.vbs FreeBSD 4.7-RC 11:59AM up 8 days, 19:13, 21 users, load averages: 0.08, 0.08, 0.03 end To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-questions" in the body of the message