Bash 변수의 색상 선

Bash 변수의 색상 선

색상을 사용하여 문자열 변수의 줄을 인쇄하는 다음 bash 함수가 있습니다. wl="1,5,8"색상이 흰색이 되도록 1, 5, 8행을 사용하고 싶습니다 . 어떻게 해야 하나요?

kls ()
 {
  local -r wht="$( tput bold; tput setaf 15 )"
  local -r blu="$( tput bold; tput setaf 39 )"

  wl="1,3,5,8"

  if [[ -n "$wl" ]]; then
    printf '%s%s%s\n' "$wht" "$@" "$rst"
  else
    sed -E "s/^ *[{-].*/${blu}&${rst}/" <<< "$@"
  fi
 }

이것은 예시 문자열입니다.

str="
Line 2
Line 3
Line 4
Line 5
Line 6
Line 7
Line 8
Line 9"

이것은 전화입니다kls

kls "$str"

출력은 다음과 같아야합니다.

Line 2 
Line 3  White Coloured Text
Line 4
Line 5  White Coloured Text
Line 6
Line 7
Line 8  White Coloured Text
Line 9"

답변1

두 번째 열을 사용 awk하고 기반으로 합니다(항상 두 개 이상의 열이 있다고 가정).

awk -v reset="$rst" -v  white="$wht" -v lines="$wl" '
BEGIN{split(lines,arrLines,",");} 
{ 
   found=0
   for(item in arrLines) {
      if (arrLines[item] == $2) { 
        found=1 ; break 
      }
   }
   if (found) { 
      print white $0 reset 
   } 
   else print $0
}' <<< "$@"

그리고 줄 번호를 기준으로 다음을 수행합니다.

awk -v reset="$rst" -v  white="$wht" -v lines="$wl" '
BEGIN{split(lines,arrLines,",");} 
{ 
   found=0
   for(item in arrLines) {
      if (arrLines[item] == NR) { 
        found=1 ; break 
      }
   }
   if (found) { 
      print white $0 reset 
   } 
   else print $0
}' <<< "$@"

관련 정보