summaryrefslogtreecommitdiffstats
path: root/adduser/adduser.sh
diff options
context:
space:
mode:
authorMax Khon <fjoe@FreeBSD.org>2003-01-20 17:55:31 +0000
committerMax Khon <fjoe@FreeBSD.org>2003-01-20 17:55:31 +0000
commit1af28db0b1156eeb3a23d0caf74c5f4102242806 (patch)
tree86f638230ae70df82633136ac7c6603c80b5c80d /adduser/adduser.sh
parent6c44b45a754c8db5307554ea1624fcdde7ea128a (diff)
downloadpw-darwin-1af28db0b1156eeb3a23d0caf74c5f4102242806.tar.gz
pw-darwin-1af28db0b1156eeb3a23d0caf74c5f4102242806.tar.zst
pw-darwin-1af28db0b1156eeb3a23d0caf74c5f4102242806.zip
do not loose trailing space when asking uid
Diffstat (limited to 'adduser/adduser.sh')
-rw-r--r--adduser/adduser.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/adduser/adduser.sh b/adduser/adduser.sh
index ef59593..5b80a16 100644
--- a/adduser/adduser.sh
+++ b/adduser/adduser.sh
@@ -394,7 +394,7 @@ get_uid() {
_prompt="Uid (Leave empty for default): "
fi
if [ -z "$fflag" ]; then
- echo -n $_prompt
+ echo -n "$_prompt"
read _input
else
_input="`echo "$fileline" | cut -f2 -d:`"