From c60a1b2461eca4a09fc8e2e9d13e1cf23b366efe Mon Sep 17 00:00:00 2001 From: pius Date: Sat, 4 Dec 1999 17:14:27 +0000 Subject: [PATCH] - /bin/bash -> /bin/sh - fixed some bashisms (BR#117) Changed files: console.init -> 1.2 --- console.init | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/console.init b/console.init index 10c7bd8..bdcee39 100644 --- a/console.init +++ b/console.init @@ -1,4 +1,4 @@ -#!/bin/bash +#!/bin/sh # # console Load console font and keyboard table # @@ -31,7 +31,7 @@ case "$1" in then show Loading console font busy - consolechars -f $CONSOLEFONT &>/dev/null + consolechars -f $CONSOLEFONT > /dev/null 2>&1 deltext;ok # Don't use "" here because additional options may be # specified after the font name (e.g. fallback tables) @@ -40,14 +40,14 @@ case "$1" in then show Loading console map busy - consolechars -m $CONSOLEMAP &>/dev/null + consolechars -m $CONSOLEMAP > /dev/null 2>&1 deltext;ok fi if [ "$KEYTABLE" != "" ] then show Loading keyboard table busy - loadkeys $KEYTABLE &>/dev/null + loadkeys $KEYTABLE > /dev/null 2>&1 deltext;ok fi ;; -- 2.44.0