Reimar Döffinger wrote: > I think you should do 2>/dev/null instead of 2>&1... I disagree. 2>&1 is perfectly portable, and it is a common shell idiom. 2>&1 is completely different from &> or >& which are not portable bash/zsh extensions. Zoli