diff options
Diffstat (limited to 'bin')
| -rwxr-xr-x | bin/common/aumount | 3 | 
1 files changed, 2 insertions, 1 deletions
diff --git a/bin/common/aumount b/bin/common/aumount index cbc5c8b..8a2b785 100755 --- a/bin/common/aumount +++ b/bin/common/aumount @@ -4,11 +4,12 @@ tmp="$(mktemp)"  test "$(id -u)" != "0" && sudo="sudo"  logn () { >&2 printf "%s\n" "$@"; } +log () { >&2 printf '%s' "$@"; }  # Read one character  read_char ()  { -	logn -n ">" +	log ">"  	old_stty_cfg=$(stty -g)  	stty raw  	dd ibs=1 count=1 2> /dev/null  | 
