PowerShell/docs/write-shit.md

54 lines
1000 B
Markdown
Raw Normal View History

2024-01-25 13:37:12 +01:00
Script: *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
```
2024-08-15 09:51:46 +02:00
*(generated by convert-ps2md.ps1 using the comment-based help of write-shit.ps1 as of 08/15/2024 09:50:55)*