Unenable shellcheck SC2183 for printf format string.

This commit is contained in:
William Melody 2020-05-17 10:37:51 -07:00
parent 6bde3438c6
commit 3e326dad13
1 changed files with 1 additions and 0 deletions

1
hosts
View File

@ -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]:-}" ]]