From da876a6e5a1ae67dd8b4649f5d9786008f86c58e Mon Sep 17 00:00:00 2001 From: Markus Fleschutz Date: Thu, 24 Aug 2023 13:31:26 +0200 Subject: [PATCH] Update write-shit.ps1 --- Scripts/write-shit.ps1 | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/Scripts/write-shit.ps1 b/Scripts/write-shit.ps1 index 81460a17..49055ed5 100755 --- a/Scripts/write-shit.ps1 +++ b/Scripts/write-shit.ps1 @@ -1 +1,16 @@ -"💩" \ No newline at end of file +<# +.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 \ No newline at end of file