Borrar filtros
Borrar filtros

PowerShell Command not working

6 visualizaciones (últimos 30 días)
Brandon Free
Brandon Free el 8 de Jun. de 2018
Comentada: Venkata Siva Krishna Madala el 12 de Jun. de 2018
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 comentario
Venkata Siva Krishna Madala
Venkata Siva Krishna Madala el 12 de Jun. de 2018
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"

Iniciar sesión para comentar.

Respuestas (0)

Categorías

Más información sobre Install Products en Help Center y File Exchange.

Etiquetas

Productos

Community Treasure Hunt

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

Start Hunting!

Translated by