Forrest logo
back to context overview

out-string

List of commands for out-string:

  • out-string:tldr:1b51a out-string: Print host information as string.
    $ Get-Alias | Out-String
    try on your machine
    explain this command
  • out-string:tldr:7255d out-string: Use the `Width` parameter to prevent truncation.
    $ @{TestKey = ('x' * 200)} | Out-String -Width ${250}
    try on your machine
    explain this command
  • out-string:tldr:bb11f out-string: Convert each object to a string rather than concatenating all the objects into a single string.
    $ Get-Alias | Out-String -Stream
    try on your machine
    explain this command
back to context overview