This PowerShell script writes a christmas tree to the terminal.
PS> ./write-xmas-tree.ps1Author: Markus Fleschutz | License: CC0
This PowerShell script writes the given text in uppercase letters.
text Specifies the text to write (ask user by default)
PS> ./write-uppercase.ps1 "Hello World"HELLO WORLDAuthor: Markus Fleschutz | License: CC0
This PowerShell script writes the given text with the typewriter effect.
text Specifies the text to write (sample text by default)
speed Specifies the speed (200 ms by default)
PS> ./write-typewriter.ps1 "Hello World"Author: Markus Fleschutz | License: CC0
This PowerShell script queries the current time and writes it in US format to the console.
PS> ./write-time.ps1🕒7:20 PMAuthor: Markus Fleschutz | License: CC0
This PowerShell script writes sine curves.
PS> ./write-sine-curvesAuthor: Markus Fleschutz | License: CC0
This PowerShell script writes text encoded or decoded with ROT13.
text Specifies the text to write
PS> ./write-rot13 "Hello World"Author: Markus Fleschutz | License: CC0
This PowerShell script calculates and writes the digits of the mathematical constant PI.
digits Specifies the number of digits to list (1000 by default)
PS> ./write-pi.ps13.141592653589793238462643383279502884197169399375105820974944592307816406286208998628034825342...Author: Markus Fleschutz | License: CC0
This PowerShell script writes the given text in Morse code.
text Specifies the text to write
speed Specifies the speed of one time unit (100 ms per default)
PS> ./write-morse-code ABC● ― ― ● ● ● ― ● ― ●Author: Markus Fleschutz | License: CC0