In PHP, strings are concatenated together as follows:
(在PHP中,字符串按以下方式串联在一起:)
$foo = "Hello";
$foo .= " World";
Here, $foo
becomes "Hello World".
(在这里, $foo
变成“ Hello World”。)
How is this accomplished in Bash?
(如何在Bash中完成?)
ask by Strawberry translate from so 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…