From b68adff6b7ef4bae2329a8135aca7063f2920b1a Mon Sep 17 00:00:00 2001 From: Sheldon Hearn Date: Wed, 25 Aug 1999 16:01:45 +0000 Subject: Style clean-up: * All variables are now embraced: ${foo} * All comparisons against some value now take the form: [ "${foo}" ? "value" ] where ? is a comparison operator * All empty string tests now take the form: [ -z "${foo}" ] * All non-empty string tests now take the form: [ -n "${foo}" ] Submitted by: jkh --- etc/rc.sysctl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'etc/rc.sysctl') diff --git a/etc/rc.sysctl b/etc/rc.sysctl index 8b1f4473b4b1..bc98de967fd9 100644 --- a/etc/rc.sysctl +++ b/etc/rc.sysctl @@ -2,12 +2,12 @@ # # Read in /etc/sysctl.conf and set things accordingly # -# $Id:$ +# $Id: rc.sysctl,v 1.1 1999/03/28 20:36:03 imp Exp $ if [ -f /etc/sysctl.conf ]; then 3< /etc/sysctl.conf while read 0<&3 var; do - sysctl -w $var + sysctl -w ${var} done 3<&- fi -- cgit v1.3