어떤 유형의 에코 출력이 있습니까(불투명, 반불투명, 일반 텍스트) [닫기]

어떤 유형의 에코 출력이 있습니까(불투명, 반불투명, 일반 텍스트) [닫기]

교수님이 나에게 과제를 주셨다.3가지 유형의 에코(불투명, 반불투명, 일반 텍스트)를 표시하는 스크립트를 작성하세요.

문제는 이러한 유형이 무엇인지 모른다는 것입니다. 온라인으로 검색했는데 색상이나 에코 출력을 변경하는 방법밖에 생각이 나지 않습니다. 예를 들어

YELLOW='\033[1;33m'
echo -e "${YELLOW}Hello World!"

도와주세요.

답변1

더 많은 연구 끝에 이것이 내가 얻은 것입니다.

# specify the location of the interpreter

#!/bin/bash
# declare variable name
name="John Doe"
# echo in plain(clear text) (with no quotes)

echo hello

# displays Semi-opaque (double quotes) Expands variables ($ stuff)

echo “Hello $name”

# display Opaque (single quotes) shows exactly what is in quotes

echo 'Hello $name'

산출:

hello

“Hello John Doe”

Hello $name

관련 정보