spm

Personal fork of spm (simple password manager)

commit 139f0f3542125dea332b2b38f65d57f32255affc
parent 7e01e61a8393db30c9971cc5ba48376f6cd742b1
Author: nmeum <git-nmeum@8pit.net>
Date: Sun, 4 May 2014 12:29:40 +0200

Set IFS to empty string
1 file changed, 1 insertion(+), 1 deletion(-)
M
tpm
|
2
+-
diff --git a/tpm b/tpm
@@ -55,7 +55,7 @@ insert() {
     echo "This entry already exists it will be overwritten."
   fi
 
-  IFS= read -p "Password for '${entry_name}': " -r -s password
+  IFS="" read -p "Password for '${entry_name}': " -r -s password
   [[ -t 0 ]] && echo
 
   if [[ -z "${password}" ]]; then