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

Reply via email to