Show path to command
Get-Command commandRead csv file and extract one column
# extract second column (index 1) and direct to a file
Get-Content .\pinyin.csv | ForEach-Object { ($_ -split ',')[1]} > .\chinese.wordlistGet-Command command# extract second column (index 1) and direct to a file
Get-Content .\pinyin.csv | ForEach-Object { ($_ -split ',')[1]} > .\chinese.wordlist