是否可以在 bash 函数中处理多行变量?假设我有一个函数theone
,并且我向它传递了一个多行变量。
var="
This
is a
multiline
variable"
theone "$var"
我想var
根据某些匹配模式对特定线条进行着色,而不使用awk
或sed
。
是否可以在 bash 函数中处理多行变量?假设我有一个函数theone
,并且我向它传递了一个多行变量。
var="
This
is a
multiline
variable"
theone "$var"
我想var
根据某些匹配模式对特定线条进行着色,而不使用awk
或sed
。