Skip to content

Native Termbin support for PowerShell and Windows PowerShell.

License

AGPL-3.0, Unknown licenses found

Licenses found

AGPL-3.0
LICENSE
Unknown
COPYING
Notifications You must be signed in to change notification settings

rhymeswithmogul/Termbin4PS

Repository files navigation

Termbin4PS

Codacy Badge PowerShell Gallery Version (including pre-releases) PowerShell Gallery

Native Termbin support for PowerShell!

Example

To send a log file to Termbin, simply pipe the raw content to Out-Termbin:

PS C:\> Get-Content -Raw 'logfile.txt' | Out-Termbin
https://termbin.com/1a2b

Note that you need to use Get-Content -Raw so that line endings are not stripped.

Another Example

To send a process list to Termbin, simply pipe your command through Out-String on its way to Out-Termbin:

PS C:\> Get-Process | Out-String | Out-Termbin

In most cases, you will need to pass your output through PowerShell's Out-String so that PowerShell will convert the native .NET objects into simple strings.