Updated some scripts

This commit is contained in:
Markus Fleschutz
2020-11-06 14:30:14 +00:00
parent 0ffef56c95
commit 946e76a5ca
11 changed files with 227 additions and 219 deletions

View File

@ -1,6 +1,6 @@
#!/snap/bin/powershell
# Syntax: ./SHA1.ps1 <file>
# Syntax: ./SHA1.ps1 [<file>]
# Description: prints the SHA1 checksum of the given file
# Author: Markus Fleschutz
# Source: github.com/fleschutz/PowerShell
@ -8,7 +8,7 @@
param([string]$File)
if ($File -eq "" ) {
$File = read-host "Enter file: "
$File = read-host "Enter file"
}
try {