Powershell: Difference between revisions
(Criou a página com "Dicas de PowerShell Category: Powershell") |
No edit summary |
||
Line 1: | Line 1: | ||
Dicas de PowerShell | Dicas de PowerShell | ||
= Comandos equivalentes do Linux/Bash = | |||
Localizando strings em arquivos | |||
Get-Content * | Select-String "string" | |||
Contando linhas | |||
ls | Measure-Object -line | |||
Get-Content * | Select-String "string" | Measure-Object -line | |||
= Outras dicas | |||
[[PowerShell: Conectando ao Domino]] | |||
[[Windows: Impedir que a minha sessão de Remote Desktop seja fechada devido à inatividade?]] | |||
[[Category: Powershell]] | [[Category: Powershell]] |
Latest revision as of 15:18, 10 December 2021
Dicas de PowerShell
Comandos equivalentes do Linux/Bash
Localizando strings em arquivos
Get-Content * | Select-String "string"
Contando linhas
ls | Measure-Object -line
Get-Content * | Select-String "string" | Measure-Object -line
= Outras dicas
PowerShell: Conectando ao Domino
Windows: Impedir que a minha sessão de Remote Desktop seja fechada devido à inatividade?