Join array elements using IFS.
Section: String Operations
Join array with delimiter
bash
bash
(IFS=,; echo "${parts[*]}")Explanation
The subshell limits IFS changes to one command group.
Learn the surrounding workflow
Compare similar commands or jump into common fixes when this command is part of a bigger troubleshooting path.
Related commands
Same sheet · prioritizing String Operations