Bash에서 여러 변수를 사용하는 방법

Bash에서 여러 변수를 사용하는 방법

user.txt90명이 넘는 사용자가 있는 다음 콘텐츠가 포함된 파일( )이 있습니다.

  • 샘플 파일 콘텐츠
    user: Ronaldo
    id:7
    endpoint:manutd.com
    user: Messi
    id:30
    endpoint:psg.com
    user: Neymar
    id:10
    endpoint:psg.com
    
  • 원하는 출력:
    Ronaldo is in manutd.com and wears no 7
    Messi is in psg.com and wears no 30
    .
    .
    
    모든 사용자 등

Bash 스크립트를 통해 어떻게 이런 방식으로 인쇄할 수 있나요?

답변1

당신은 이것을 사용할 수 있습니다awk

awk -F: '/user/ {name=$2 " is in "; next} /id/{id="no "$2;next} /endpoint/ {team=$2 " and wears "} {print name, team, id }' $inputfile

산출

 Ronaldo is in  manutd.com and wears  no 7
 Messi is in  psg.com and wears  no 30
 Neymar is in  psg.com and wears  no 10

예상되는 대문자 출력이 잘못되었다고 가정하고 있지만 그렇지 않은 경우 지적해 주십시오.

답변2

그리고 sed:

$ sed -n 'N;N;s/^user: *\(.*\)\nid: *\(.*\)\nendpoint: *\(.*\)/\1 is in \3 and wears no \2/p' file
Ronaldo is in manutd.com and wears no 7
Messi is in psg.com and wears no 30
Neymar is in psg.com and wears no 10

답변3

큰 타격:

declare -A record
while IFS=":$IFS" read -r key value; do
    record[$key]=$value
    if [[ -v 'record[user]' && -v 'record[id]' && -v 'record[endpoint]' ]]; then
        printf '%s is in %s and wears no %s\n' "${record[user]}" "${record[endpoint]}" "${record[id]}"
        record=()
    fi
done < file.content

관련 정보