From 432a29f8c15f5fbdab4eaf085229cedc22a23bc6 Mon Sep 17 00:00:00 2001 From: Vlad Doster Date: Fri, 10 Apr 2020 15:40:34 -0500 Subject: [PATCH] formatting --- .local/bin/delete_certain_known_hosts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.local/bin/delete_certain_known_hosts b/.local/bin/delete_certain_known_hosts index 2e622759..c054c75a 100755 --- a/.local/bin/delete_certain_known_hosts +++ b/.local/bin/delete_certain_known_hosts @@ -17,9 +17,9 @@ read -r -a delete_these_lines <<< "$deduped_args" # Loop through creating sed expression for var in "${delete_these_lines[@]}"; do if [[ "$var" -gt "$lines_in_known_hosts" ]]; then - echo "$var is invalid line in $lines_in_known_hosts line $known_hosts_path" + echo "$var is invalid line in $lines_in_known_hosts line $known_hosts_path" else - lines_to_delete+="${var}d;" + lines_to_delete+="${var}d;" fi done # Output information to user about what happened