Comment 8 for bug 340183

Revision history for this message
Jamie Strandboge (jdstrand) wrote :

Updated test script:
#!/bin/sh

tmp="$HOME/foobar.tmp"
trap "rm -rf $tmp" EXIT HUP INT QUIT TERM
touch "$tmp"

for i in `ls /`
do
    /bin/echo "$i"
done