From: Ian Kelling Date: Sat, 1 Mar 2025 23:58:21 +0000 (-0500) Subject: shellcheck fixes X-Git-Url: https://iankelling.org/git/?a=commitdiff_plain;h=94cf1536ce980863719b5268dfd6fbe05d18d605;p=distro-setup shellcheck fixes --- diff --git a/beet-data b/beet-data index 8af190b..f1e9823 100644 --- a/beet-data +++ b/beet-data @@ -49,7 +49,7 @@ pl_tags=( lesser_version ) - +nav_convert_query="^genre:spoken-w ^genre:skit ^lesser_version:t rating:3..5" common_genres=( ambient diff --git a/beetag b/beetag index 846fff4..392efa6 100755 --- a/beetag +++ b/beetag @@ -22,7 +22,7 @@ # Uncomment this when developing this file for quick shellcheck results, # otherwise it is redundant. -. /a/c/fsf-script-lib +#. /a/c/fsf-script-lib # Must be called from beetag for variables to be setup beetag-help() { @@ -253,7 +253,7 @@ toggle-rare-genres() { # Call from beetag. Queries our songlist and parses it into variables. # -# Sets ls_lines, id_count, paths, ids +# Sets ls_lines, id_count, ls_paths, ids # # Input vars: pl_tags, pl_seed_path, random, beet_query beetag-ls-setup() { @@ -279,7 +279,7 @@ beetag-ls-setup() { id_count=${#ls_out[@]} for line in "${ls_out[@]}"; do - paths+=("${line#*PijokVipiotOzeph }") + ls_paths+=("${line#*PijokVipiotOzeph }") line_no_path="${line% PijokVipiotOzeph*}" ids+=("${line_no_path##* }") right_pad="${line_no_path%% |*}" @@ -318,6 +318,9 @@ beetag-advance-maybe() { fi } +# Call from beetag. Run after printing a list of tracks, then this +# prompts the user and for one and processes the input. +# # Input vars: j, skip_start # # Output vars: j, got_track @@ -382,10 +385,10 @@ beetag() { # constants local escape_char pl_state_path pl_seed_path - local -ar buttons=( {a..i} {l..p} {r..w} {6..8} , . / - "=" '\' ) + local -ar buttons=( {a..i} {l..p} {r..w} {6..8} , . / - "=" \\ ) # song list vars: - local -a ids ls_lines paths + local -a ids ls_lines ls_paths local -i id_count # current song vars: @@ -401,7 +404,7 @@ beetag() { # misc vars local char_i escaped_input new_item seek_sec local -i scrolled=999 # more than any $LINES - local -i i ret line_int skip_start pre_j_count skip_lookback overflow_lines overflow + local -i i ret line_int skip_start skip_lookback overflow_lines overflow ### begin arg processing ### random=false @@ -447,7 +450,7 @@ beetag() { while true; do id=${ids[j]} - path="${paths[$j]}" + path="${ls_paths[$j]}" ls_out="${ls_lines[j]}" tags=( ${ls_out%%,*} ) beetag-help diff --git a/brc b/brc index 1c42e79..214102f 100644 --- a/brc +++ b/brc @@ -2984,13 +2984,20 @@ sgu() { sk-p() { [[ ! -L $f ]] && istext "$1" && [[ $(head -n1 "$1" 2>/dev/null) == '#!/bin/bash'* ]] } +shellcheck-except() { + local quotes others + quotes=2048,2064,2068,2086,2119,2206,2254,2231 + others=2029,2032,2033,2054,2164,2317 + shellcheck -e $quotes,$others "$@" || return $? +} # wrapper for shellcheck with better defaults. sk() { # see https://savannah.gnu.org/maintenance/fsf/bash-style-guide/ for justifications - local quotes others ret + local quotes others + local -i ret=0 quotes=2048,2064,2068,2086,2119,2206,2254,2231 others=2029,2032,2033,2054,2164,2317 - shellcheck -ax -W 999 -e $quotes,$others "$@" || ret=$? + shellcheck-except -ax -W 999 "$@" || ret=$? if (( ret >= 1 )); then echo "A template comment to disable is now in clipboard. eg: # shellcheck disable=SC2206 # reason" cbs "# shellcheck disable=SC" diff --git a/brc2 b/brc2 index 5639e0e..bdbe6db 100644 --- a/brc2 +++ b/brc2 @@ -4650,8 +4650,9 @@ linediff() { # list count of files in directories wc-l-dirs() { - for f in "$@"; do - e $(ls -1Uq $f| wc -l) $f + local dir + for dir in "$@"; do + e "$(find $dir -maxdepth 1 -type f -printf x | wc -c)" "$dir" done | sort -n } diff --git a/fsf-script-lib b/fsf-script-lib index 32dcdfb..b4767d4 100644 --- a/fsf-script-lib +++ b/fsf-script-lib @@ -53,6 +53,7 @@ uint_regex='^[0-9]+$' # horizontal row. used to break up output +# shellcheck disable=SC2120 # not a big deal. hr() { local start end end_count arg # 180 is long enough. 5 for start. diff --git a/shellcheck-this-repo b/shellcheck-this-repo index 926797c..80ec3f7 100755 --- a/shellcheck-this-repo +++ b/shellcheck-this-repo @@ -42,4 +42,4 @@ for f in "${ls_files[@]}"; do fi done -sk "${standard_files[@]}" +shellcheck-except -x -W 999 "${standard_files[@]}"