Added rm of tmpfile. #330

Merged
nico merged 1 commits from :__ssh_authorized_keys-rm into master 2022-03-09 15:12:21 +00:00
1 changed files with 1 additions and 0 deletions

View File

@ -40,6 +40,7 @@ if [ -f "$file" ]; then
grep -v -F -x '$line' '$file' >\$tmpfile
fi
cat "\$tmpfile" >"$file"
rm -f "\$tmpfile"
DONE
}