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