diff options
author | fjoe <fjoe@FreeBSD.org> | 2003-01-20 17:55:31 +0000 |
---|---|---|
committer | fjoe <fjoe@FreeBSD.org> | 2003-01-20 17:55:31 +0000 |
commit | 8bf93c29cee78f254cf0996e319b1a4bf2eae918 (patch) | |
tree | 5cd3cfba033dc72988a6343ea17c191f97444bdf /usr.sbin | |
parent | e7be7a0432de3e374a6d4cfedc0ef5c8b264a021 (diff) | |
download | FreeBSD-src-8bf93c29cee78f254cf0996e319b1a4bf2eae918.zip FreeBSD-src-8bf93c29cee78f254cf0996e319b1a4bf2eae918.tar.gz |
do not loose trailing space when asking uid
Diffstat (limited to 'usr.sbin')
-rw-r--r-- | usr.sbin/adduser/adduser.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.sbin/adduser/adduser.sh b/usr.sbin/adduser/adduser.sh index ef59593..5b80a16b 100644 --- a/usr.sbin/adduser/adduser.sh +++ b/usr.sbin/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:`" |