From 3e326dad136f7f0162f481140e6c87b53fe3f098 Mon Sep 17 00:00:00 2001 From: William Melody Date: Sun, 17 May 2020 10:37:51 -0700 Subject: [PATCH] Unenable shellcheck SC2183 for printf format string. --- hosts | 1 + 1 file changed, 1 insertion(+) diff --git a/hosts b/hosts index 8b6e506..be4ada8 100755 --- a/hosts +++ b/hosts @@ -424,6 +424,7 @@ _print_entries() { _current_divided=$((${#_parts[0]} / 8)) _tab_count=$((_max_divided - _current_divided + 1)) + # shellcheck disable=SC2183 _tabs="$(printf "%*s" ${_tab_count} | tr " " '\t')" if [[ -n "${_parts[2]:-}" ]]