8 lines
150 B
Bash
8 lines
150 B
Bash
|
|
bash$ a='apples, pears ; and bananas'
|
||
|
|
bash$ b='apples, pears # and bananas'
|
||
|
|
bash$ echo ${a%%;*}
|
||
|
|
apples, pears
|
||
|
|
bash$ echo ${b%%#*}
|
||
|
|
apples, pears
|
||
|
|
bash$
|