我的讲师给我布置了一项作业编写一个脚本来显示 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