Rename to list-passwords.ps1 and list-pins.ps1

This commit is contained in:
Markus Fleschutz
2021-08-19 17:08:09 +02:00
parent 415d4a339d
commit f3a23fd987
4 changed files with 10 additions and 10 deletions

View File

@ -1,10 +1,10 @@
<#
.SYNOPSIS
list-random-passwords.ps1 [<password-length>] [<columns>] [<rows>]
list-passwords.ps1 [<password-length>] [<columns>] [<rows>]
.DESCRIPTION
Prints a list of random passwords
.EXAMPLE
PS> .\list-random-passwords.ps1
PS> .\list-passwords.ps1
.LINK
https://github.com/fleschutz/PowerShell
.NOTES
@ -12,7 +12,7 @@
License: CC0
#>
param([int]$PasswordLength = 15, [int]$Columns = 6, [int]$Rows = 26)
param([int]$PasswordLength = 15, [int]$Columns = 6, [int]$Rows = 30)
$MinCharCode = 33
$MaxCharCode = 126

View File

@ -1,10 +1,10 @@
<#
.SYNOPSIS
list-random-pins.ps1 [<pin-length>] [<columns>] [<rows>]
list-pins.ps1 [<pin-length>] [<columns>] [<rows>]
.DESCRIPTION
Prints a list of random PIN's
.EXAMPLE
PS> .\list-random-pins.ps1
PS> .\list-pins.ps1
.LINK
https://github.com/fleschutz/PowerShell
.NOTES
@ -12,7 +12,7 @@
License: CC0
#>
param([int]$PinLength = 5, [int]$Columns = 12, [int]$Rows = 26)
param([int]$PinLength = 5, [int]$Columns = 12, [int]$Rows = 30)
try {
write-output ""