diff options
author | Laoujin <woutervs@hotmail.com> | 2015-11-28 19:44:54 +0100 |
---|---|---|
committer | Laoujin <woutervs@hotmail.com> | 2015-11-28 19:44:54 +0100 |
commit | e9b3854e16437896d83dd1a5df9f2dfe50a9746a (patch) | |
tree | 7b86f843cc508349a0e92e393d539840975766d1 /powershell.html.markdown | |
parent | 90a7e8ac4910e0ab754ce1801d6743fb6c70eaba (diff) | |
parent | 276390e4583ffe471fd90d527fd0ef1c96510119 (diff) |
Merge branch 'master' of https://github.com/Laoujin/learnxinyminutes-docs
Diffstat (limited to 'powershell.html.markdown')
-rw-r--r-- | powershell.html.markdown | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/powershell.html.markdown b/powershell.html.markdown index 70935993..4bc1ab39 100644 --- a/powershell.html.markdown +++ b/powershell.html.markdown @@ -164,7 +164,6 @@ ls -fi *.txt -n # -f is not possible because -Force also exists # Use `Get-Help Get-ChildItem -Full` for a complete overview # Results of the previous cmdlet can be passed to the next as input. -# grep cmdlet filters the input with provided patterns. # `$_` is the current object in the pipeline object. ls | Where-Object { $_.Name -match 'c' } | Export-CSV export.txt ls | ? { $_.Name -match 'c' } | ConvertTo-HTML | Out-File export.html @@ -318,4 +317,4 @@ Not covered * WMI: Windows Management Intrumentation (Get-CimInstance) * Multitasking: Start-Job -scriptBlock {...}, * Code Signing -* Remoting (Enter-PSSession/Exit-PSSession; Invoke-Command)
\ No newline at end of file +* Remoting (Enter-PSSession/Exit-PSSession; Invoke-Command) |