On Wed, Mar 23, 2011 at 10:34:57PM +0200, Le Tian wrote:
> Yeah, your variant is better, but why should I make exec dwm?
I highly recommend writing a tiny looping shell script .e.g. each of the
various ideas below, and watching what they do with pstree or 'ps fax'.
#1
while true; do
exec sleep 30 &
done
#2
while true; do
exec sleep 30
done
#3
while true; do
sleep 30
done
Patrick
Received on Thu Mar 24 2011 - 01:53:45 CET
This archive was generated by hypermail 2.2.0 : Thu Mar 24 2011 - 02:00:05 CET