PowerShell/Docs/write-shit.md

54 lines
984 B
Markdown
Raw Normal View History

2023-07-29 10:34:04 +02:00
*write-shit.ps1*
================
2023-07-29 09:45:37 +02:00
2023-09-01 17:53:03 +02:00
This PowerShell script writes shit to the console (fun).
2023-07-29 09:45:37 +02:00
2023-07-29 10:04:38 +02:00
Parameters
----------
2023-07-29 09:45:37 +02:00
```powershell
2023-09-01 17:53:03 +02:00
PS> ./write-shit.ps1 [<CommonParameters>]
2023-07-29 09:45:37 +02:00
[<CommonParameters>]
This script supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction,
WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
```
2023-09-01 17:53:03 +02:00
Example
-------
```powershell
PS> ./write-shit.ps1
💩
```
Notes
-----
Author: Markus Fleschutz | License: CC0
Related Links
-------------
https://github.com/fleschutz/PowerShell
2023-07-29 10:04:38 +02:00
Script Content
--------------
2023-07-29 09:45:37 +02:00
```powershell
2023-09-01 17:53:03 +02:00
<#
.SYNOPSIS
Writes shit
.DESCRIPTION
This PowerShell script writes shit to the console (fun).
.EXAMPLE
PS> ./write-shit.ps1
💩
.LINK
https://github.com/fleschutz/PowerShell
.NOTES
Author: Markus Fleschutz | License: CC0
#>
Write-Output "💩"
exit 0 # success
2023-07-29 09:45:37 +02:00
```
2023-10-19 08:12:00 +02:00
*(generated by convert-ps2md.ps1 using the comment-based help of write-shit.ps1 as of 10/19/2023 08:11:44)*