fix: replace echo with printf for consistent output formatting in hosts-add script

This commit is contained in:
Burnett01 2025-09-01 16:04:39 +00:00
parent 4369819153
commit bf4dca9d8e

View file

@ -2,4 +2,4 @@
set -euo pipefail set -euo pipefail
echo "$@" >> ~/.ssh/known_hosts printf '%s\n' "$@" >> ~/.ssh/known_hosts