I have a tab separated text file after executing some command in powershell i want to convert this tab separated file into csv now how can i do so?
A tab separated text file could be treated as a CSV file with a tab instead of comma as its delimiter. To convert:
import-csv tabdelimitedfile.txt -delimiter "`t" | export-csv csvfile.csv