summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Osterried <thomas@osterried.de>2012-10-28 06:28:35 +0000
committerThomas Osterried <thomas@osterried.de>2012-10-28 06:28:35 +0000
commit4809fd9a2a38265bbf6f990e9643bea5f5f8e4c2 (patch)
treeafc19f7148235aaf1fcc9975330e6920370ee11b
parent55118b82cab84a6c426e455cf028136a92c9c41f (diff)
fixed "bashism" complain. debian Bug#690626
-rwxr-xr-xrose/rsusers.sh10
1 files changed, 5 insertions, 5 deletions
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