PowerShell Command not working

6 次查看(过去 30 天)
I have a powershell command that removes lines from a large text file to make it a more manageable size. When I try to run it in MATLAB it gives an error
!powershell Get-Content oldfile.txt | Where {($_.ReadCount % 1000) -eq 0}|Set-Content newfile.txt
'Set-Content' is not recognized as an internal or external command,
operable program or batch file.
Any ideas how I can fix this?
  1 个评论
Venkata Siva Krishna Madala
As posted by Kojiro Saito you have to put the command between double quotes.
!powershell "Get-Content oldfile.txt | Where {($_.ReadCount % 1000) -eq 0} | Set-Content newfile.txt"

请先登录,再进行评论。

回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Install Products 的更多信息

标签

产品

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by