lunes, 4 de octubre de 2021

Comandos útiles tipo linux en PowerShell

Tail

tail -f fichero.log
Get-Content "fichero.log" -Wait

tail -f fichero1.log fichero.log
Get-Content "fichero1.log","fichero2.log" -Wait

Get-Content "*.log" -Wait
Get-Content "*.logs" -Exclude "TS*.log","x.log","*202001*" -Wait

tail -n 10 fichero.log
Get-Content fichero.log -Tail 10

head -n 10 fichero.log
Get-Content "c:\important.log" -Head 10

Find

find . -name *.txt
 Get-ChildItem -Path "." -Recurse -Filter "*.txt" | Format-Table FullName

Para parámetros de tipo -d en find añadir -Directory, en caso de fichero (-f en find) añadir -File
Para que incluya ficheros ocultos -Force
Profundidad de directorios -Depth

Abreviaturas

 Get-ChildItem -> gci
 Get-Content -> gc
 Select-String -> sls
 Format-Table -> ft

No hay comentarios:

Publicar un comentario

L2TP Ipsec Windows to Mikrotik eror 789

 Add this to registry REG ADD HKLM\SYSTEM\CurrentControlSet\Services\PolicyAgent /v AssumeUDPEncapsulationContextOnSendRule /t REG_DWORD /d...