CORRECT TEXT
You have a text file with tab-separated values, but your application needs them space-separated.
What command would you use from the Bash shell to achieve this? Please fill in the command
only, without any options.
Answer: expand
Explanation:
The expand command is used to convert from tab to space. Example: expand -t 2 test a. It will
convert the tab into two spaces.