diff --git a/docs/learning-powershell/README.md b/docs/learning-powershell/README.md index 502de510f95..bc9f8c0fb02 100644 --- a/docs/learning-powershell/README.md +++ b/docs/learning-powershell/README.md @@ -100,7 +100,7 @@ Note that all bash commands should continue working on PowerShell session. | rm -r <folderName> |Remove-Item <folderName> -Recurse |Delete a folder | find -name build* |Get-ChildItem build* -Recurse |Find a file or folder starting with 'build' | grep -Rin "sometext" --include="*.cs" |Get-ChildItem -Recurse -Filter *.cs
\| Select-String -Pattern "sometext" | Recursively case-insensitive search for text in files - +| curl https://github.com | Invoke-RestMethod https://github.com | Transfer data to or from the web Recommended Training and Reading ----