6 lines
70 B
Bash
6 lines
70 B
Bash
|
|
string='Hello,How,Are,You,Today'
|
||
|
|
|
||
|
|
(IFS=,
|
||
|
|
printf '%s.' $string
|
||
|
|
echo)
|