我正在编写一个 BASH 脚本。我在 Ubuntu 10.08 上使用 RAR 3.93。我想向存档 example.rar 添加注释。注释为“这是一条注释”。
rar c example.rar
Processing archive rarcomment.rar
Reading comment from stdin
但是我想从变量中添加注释,而不是从标准输入中输入。
$Comment="This is a comment"
我怎样才能做到这一点?
答案1
export COMMENT="This is a comment
with multiple lines"
echo "$COMMENT" | rar c example.rar
要写入多个行变量,只需在完成之前不要关闭引号即可。要将其附加到回显,请使用引号。