I'm running FC5, and I've got an odd problem with a bash script I've got.  The problem can be summarized fairly easily with a two line script:<br><br>#!/bin/bash<br>/bin/more /etc/profile 2> /tmp/errorlog<br><br>When I do this the first full screen gets printed, then more quits.  This is a trivial example, but the script does several things and captures stderr to a logfile; under ksh the script works fine... under bash it doesn't.
<br><br>Any ideas?<br>