'Using stdin in side the loop conflicts with stdin use in a new sed command. How to fix?

Existing loop:

while read Line ; do ...

New Code: Convert all tabs to spaces

Line=$(sed -E 's/\t/ /g' <<<"$Line) ... done < File



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source