From 4809fd9a2a38265bbf6f990e9643bea5f5f8e4c2 Mon Sep 17 00:00:00 2001 From: Thomas Osterried Date: Sun, 28 Oct 2012 06:28:35 +0000 Subject: fixed "bashism" complain. debian Bug#690626 --- rose/rsusers.sh | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'rose') diff --git a/rose/rsusers.sh b/rose/rsusers.sh index 09c2e97..6dff1ce 100755 --- a/rose/rsusers.sh +++ b/rose/rsusers.sh @@ -6,7 +6,7 @@ if [ $# = 1 ]; then ALL=y fi -echo -en "Linux/ROSE 001. AX.25, NET/ROM and ROSE Users.\r" +printf "Linux/ROSE 001. AX.25, NET/ROM and ROSE Users.\r" if [ -r /proc/net/ax25 ]; then cat /proc/net/ax25 | awk ' @@ -43,7 +43,7 @@ if [ -r /proc/net/ax25 ]; then } }' ALL=$ALL - echo -en "\r" + printf "\r" fi if [ -r /proc/net/nr ]; then @@ -81,7 +81,7 @@ if [ -r /proc/net/nr ]; then } }' ALL=$ALL - echo -en "\r" + printf "\r" fi if [ -r /proc/net/rose ]; then @@ -119,10 +119,10 @@ if [ -r /proc/net/rose ]; then } }' ALL=$ALL - echo -en "\r" + printf "\r" fi -read +read x exit 0 -- cgit v1.2.3