Use more thorough redirection to make the impact of allscreens_flags

more comprehensive.  Previously, at least colour changes were not
applied to all virtual consoles.

PR:		15066
Reported by:	Andy Farkas <andyf@speednet.com.au>
Submitted by:	yokota
This commit is contained in:
Sheldon Hearn 1999-12-21 10:53:04 +00:00
parent 722636354c
commit faf052a79e
2 changed files with 2 additions and 2 deletions

View file

@ -204,7 +204,7 @@ esac
if [ -n "${allscreens_flags}" ]; then
echo -n ' allscreens'
for ttyv in /dev/ttyv*; do
vidcontrol < ${ttyv} ${allscreens_flags}
vidcontrol ${allscreens_flags} < ${ttyv} > ${ttyv} 2>&1
done
fi

View file

@ -204,7 +204,7 @@ esac
if [ -n "${allscreens_flags}" ]; then
echo -n ' allscreens'
for ttyv in /dev/ttyv*; do
vidcontrol < ${ttyv} ${allscreens_flags}
vidcontrol ${allscreens_flags} < ${ttyv} > ${ttyv} 2>&1
done
fi