From 67dd94aaab5a987395830d364df2c49ee25eb839 Mon Sep 17 00:00:00 2001 From: Gerard Beekmans Date: Thu, 19 Jul 2001 13:54:44 +0000 Subject: [PATCH] changed & into & and < into < git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@812 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689 --- chapter07/functions.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/chapter07/functions.xml b/chapter07/functions.xml index 34961dd60..15bda9133 100644 --- a/chapter07/functions.xml +++ b/chapter07/functions.xml @@ -27,10 +27,10 @@ the following command: if [ -z "$COLUMNS" ] then # Get the console device if we don't have it already - test -z "$CONSOLE" && CONSOLE=/dev/console + test -z "$CONSOLE" && CONSOLE=/dev/console # Get the console size (rows columns) - SIZE=$(stty size < $CONSOLE) + SIZE=$(stty size < $CONSOLE) # Strip off the rows leaving the columns COLUMNS=${SIZE#*\ }