bash:strings:concatenating_strings
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
bash:strings:concatenating_strings [2021/01/11 11:55] – peter | bash:strings:concatenating_strings [2021/01/13 22:55] (current) – peter | ||
---|---|---|---|
Line 1: | Line 1: | ||
====== BASH - Strings - Concatenating Strings ====== | ====== BASH - Strings - Concatenating Strings ====== | ||
+ | |||
+ | To concatenate two variables you can just write them one after another: | ||
<code bash> | <code bash> | ||
Line 15: | Line 17: | ||
</ | </ | ||
+ | ---- | ||
+ | |||
+ | <code bash> | ||
+ | a=' | ||
+ | b=' | ||
+ | c=" | ||
+ | echo " | ||
+ | > Hello World | ||
+ | </ | ||
+ | |||
+ | or | ||
+ | |||
+ | <code bash> | ||
+ | foo=" | ||
+ | foo=" | ||
+ | echo " | ||
+ | > Hello World | ||
+ | </ | ||
+ | |||
+ | ---- | ||
+ | |||
+ | <code bash> | ||
+ | var=" | ||
+ | echo ${var:0:(-1 -4)}XYZ | ||
+ | </ | ||
+ | |||
+ | returns: | ||
+ | |||
+ | <code bash> | ||
+ | abcXYZ | ||
+ | </ | ||
bash/strings/concatenating_strings.1610366122.txt.gz · Last modified: 2021/01/11 11:55 by peter