Last active
August 31, 2019 11:08
-
-
Save mizuneko/4481d1fdc5d97b45d815822706a4641c to your computer and use it in GitHub Desktop.
more のレスポンス改善
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function psmore | |
{ | |
begin | |
{ | |
$scriptCmd = { Out-Host -Paging } | |
$steppablePipeline = $scriptCmd.GetSteppablePipeline() | |
$steppablePipeline.Begin($true) | |
} | |
process | |
{ | |
try | |
{ | |
$steppablePipeline.Process($_) | |
} | |
catch | |
{ | |
break; | |
} | |
} | |
end | |
{ | |
$steppablePipeline.End() | |
} | |
} | |
# e.g. dir c:\windows -Recurse | psmore |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment