From 80be672828b27a0d1e9ea0a8388793614cb5867f Mon Sep 17 00:00:00 2001 From: Markus Fleschutz Date: Tue, 29 Sep 2020 18:05:52 +0000 Subject: [PATCH] Updated the headers --- Scripts/MD5.ps1 | 4 ++-- Scripts/SHA1.ps1 | 4 ++-- Scripts/SHA256.ps1 | 4 ++-- Scripts/calculator.ps1 | 8 ++++++++ Scripts/crash_dumps.ps1 | 7 +++++++ Scripts/download_homepage.ps1 | 9 ++++++++- Scripts/email.ps1 | 10 +++++++++- Scripts/exe_info.ps1 | 4 ++-- Scripts/init_git.ps1 | 3 ++- Scripts/lscmdlets.ps1 | 4 ++-- Scripts/lsmods.ps1 | 4 ++-- Scripts/lsproc.ps1 | 4 ++-- Scripts/moon.ps1 | 4 ++-- Scripts/news.ps1 | 6 ++---- Scripts/password.ps1 | 3 ++- Scripts/passwords.ps1 | 3 ++- Scripts/poweroff.ps1 | 3 ++- Scripts/reboot.ps1 | 3 ++- Scripts/speak.ps1 | 4 ++-- Scripts/test.ps1 | 2 +- Scripts/train_dns_cache.ps1 | 4 ++-- Scripts/translate.ps1 | 3 ++- Scripts/txt2wav.ps1 | 3 ++- Scripts/wakeup.ps1 | 3 ++- Scripts/weather.ps1 | 4 ++-- Scripts/zipdir.ps1 | 6 +++--- 26 files changed, 76 insertions(+), 40 deletions(-) diff --git a/Scripts/MD5.ps1 b/Scripts/MD5.ps1 index 2950e992..586381fa 100755 --- a/Scripts/MD5.ps1 +++ b/Scripts/MD5.ps1 @@ -1,11 +1,11 @@ #!/snap/bin/powershell # -# Syntax: MD5.ps1 +# Syntax: ./MD5.ps1 # Description: prints the MD5 checksum of the given file # Author: Markus Fleschutz # Source: github.com/fleschutz/PowerShell # License: CC0 -# + param([string]$File) $Result = get-filehash $File -algorithm MD5 write-host $Result.Hash diff --git a/Scripts/SHA1.ps1 b/Scripts/SHA1.ps1 index fc61c0b2..0f7aa9fe 100755 --- a/Scripts/SHA1.ps1 +++ b/Scripts/SHA1.ps1 @@ -1,11 +1,11 @@ #!/snap/bin/powershell # -# Syntax: SHA1.ps1 +# Syntax: ./SHA1.ps1 # Description: prints the SHA1 checksum of the given file # Author: Markus Fleschutz # Source: github.com/fleschutz/PowerShell # License: CC0 -# + param([string]$File) $Result = get-filehash $File -algorithm SHA1 write-host $Result.Hash diff --git a/Scripts/SHA256.ps1 b/Scripts/SHA256.ps1 index 9b1ef3c7..a9276817 100755 --- a/Scripts/SHA256.ps1 +++ b/Scripts/SHA256.ps1 @@ -1,11 +1,11 @@ #!/snap/bin/powershell # -# Syntax: SHA256.ps1 +# Syntax: ./SHA256.ps1 # Description: prints the SHA256 checksum of the given file # Author: Markus Fleschutz # Source: github.com/fleschutz/PowerShell # License: CC0 -# + param([string]$File) $Result = get-filehash $File -algorithm SHA256 write-host $Result.Hash diff --git a/Scripts/calculator.ps1 b/Scripts/calculator.ps1 index ceaf4b86..e2319df6 100755 --- a/Scripts/calculator.ps1 +++ b/Scripts/calculator.ps1 @@ -1,3 +1,11 @@ +#!/snap/bin/powershell +# +# Syntax: ./calculator.ps1 +# Description: starts a calculator (GUI) +# Author: Markus Fleschutz +# Source: github.com/fleschutz/PowerShell +# License: CC0 + clear-host write-host " PowerShell Calculator " -for green write-host "" diff --git a/Scripts/crash_dumps.ps1 b/Scripts/crash_dumps.ps1 index ee1ce613..53dd7580 100755 --- a/Scripts/crash_dumps.ps1 +++ b/Scripts/crash_dumps.ps1 @@ -1,4 +1,11 @@ #!/snap/bin/powershell +# +# Syntax: ./crash_dumps.ps1 +# Description: enables crash dumps +# Author: Markus Fleschutz +# Source: github.com/fleschutz/PowerShell +# License: CC0 + ################################################################## # # # Written by: Ryan Waters # diff --git a/Scripts/download_homepage.ps1 b/Scripts/download_homepage.ps1 index a24ec53e..6f08cec5 100755 --- a/Scripts/download_homepage.ps1 +++ b/Scripts/download_homepage.ps1 @@ -1,4 +1,10 @@ -#!/bin/sh +#!/snap/bin/powershell +# +# Syntax: ./download_homepage.ps1 +# Description: downloads from the given URL +# Author: Markus Fleschutz +# Source: github.com/fleschutz/PowerShell +# License: CC0 backup() { @@ -7,3 +13,4 @@ backup() } backup $1 +exit 0 diff --git a/Scripts/email.ps1 b/Scripts/email.ps1 index 1c8d43a5..5518e287 100755 --- a/Scripts/email.ps1 +++ b/Scripts/email.ps1 @@ -1,4 +1,12 @@ -mtpServer = "smtp.example.com" +#!/snap/bin/powershell +# +# Syntax: ./email.ps1 +# Description: sends an email +# Author: Markus Fleschutz +# Source: github.com/fleschutz/PowerShell +# License: CC0 + +$smtpServer = "smtp.example.com" $msg = new-object Net.Mail.MailMessage $smtp = new-object Net.Mail.SmtpClient($smtpServer) $msg.From = "me@example.com" diff --git a/Scripts/exe_info.ps1 b/Scripts/exe_info.ps1 index bf547f6e..16b8eb14 100644 --- a/Scripts/exe_info.ps1 +++ b/Scripts/exe_info.ps1 @@ -1,11 +1,11 @@ #!/snap/bin/powershell # -# Syntax: exe_info.ps1 +# Syntax: ./exe_info.ps1 # Description: prints basic information of the given executable file # Author: Markus Fleschutz # Source: github.com/fleschutz/PowerShell # License: CC0 -# + param([string]$File) get-childitem $File | % {$_.VersionInfo} | Select * exit 0 diff --git a/Scripts/init_git.ps1 b/Scripts/init_git.ps1 index addf5e69..ea20f782 100755 --- a/Scripts/init_git.ps1 +++ b/Scripts/init_git.ps1 @@ -1,10 +1,11 @@ #!/snap/bin/powershell # +# Syntax: ./init_git.ps1 # Description: initializes Git # Author: Markus Fleschutz # Source: github.com/fleschutz/PowerShell # License: CC0 -# + $UserName = read-host "Your full name: " $UserEmail = read-host "Your email address: " $UserEditor = read-host "Your favorite editor (nano, vi, emacs): " diff --git a/Scripts/lscmdlets.ps1 b/Scripts/lscmdlets.ps1 index ede1bf1d..7ba31e23 100755 --- a/Scripts/lscmdlets.ps1 +++ b/Scripts/lscmdlets.ps1 @@ -1,10 +1,10 @@ #!/snap/bin/powershell # -# Syntax: lscmdlets.ps1 +# Syntax: ./lscmdlets.ps1 # Description: lists all PowerShell cmdlets # Author: Markus Fleschutz # Source: github.com/fleschutz/PowerShell # License: CC0 -# + Get-Command -Command-Type cmdlet exit 0 diff --git a/Scripts/lsmods.ps1 b/Scripts/lsmods.ps1 index 9b7c32f6..2cd31734 100755 --- a/Scripts/lsmods.ps1 +++ b/Scripts/lsmods.ps1 @@ -1,10 +1,10 @@ #!/snap/bin/powershell # -# Syntax: lsmods.ps1 +# Syntax: ./lsmods.ps1 # Description: lists all PowerShell modules # Author: Markus Fleschutz # Source: github.com/fleschutz/PowerShell # License: CC0 -# + Get-Module exit 0 diff --git a/Scripts/lsproc.ps1 b/Scripts/lsproc.ps1 index 3d272144..d2390c7a 100755 --- a/Scripts/lsproc.ps1 +++ b/Scripts/lsproc.ps1 @@ -1,10 +1,10 @@ #!/snap/bin/powershell # -# Syntax: lsproc.ps1 +# Syntax: ./lsproc.ps1 # Description: lists the local computer processes # Author: Markus Fleschutz # Source: github.com/fleschutz/PowerShell # License: CC0 -# + Get-Process | Format-Table -Property Id, @{Label="CPU(s)";Expression={$_.CPU.ToString("N")+"%"};Alignment="Right"}, ProcessName -AutoSize exit 0 diff --git a/Scripts/moon.ps1 b/Scripts/moon.ps1 index 194a2054..a68a8840 100755 --- a/Scripts/moon.ps1 +++ b/Scripts/moon.ps1 @@ -1,10 +1,10 @@ #!/snap/bin/powershell # -# Syntax: moon +# Syntax: ./moon.ps1 # Description: prints the current moon phase # Author: Markus Fleschutz # Source: github.com/fleschutz/PowerShell # License: CC0 -# + (Invoke-WebRequest http://wttr.in/Moon -UserAgent "curl" ).Content exit 0 diff --git a/Scripts/news.ps1 b/Scripts/news.ps1 index d92a3052..90af0edb 100755 --- a/Scripts/news.ps1 +++ b/Scripts/news.ps1 @@ -1,12 +1,11 @@ #!/snap/bin/powershell # -# Syntax: news.ps1 +# Syntax: ./news.ps1 # Description: print the latest news # Author: Markus Fleschutz # Source: github.com/fleschutz/PowerShell # License: CC0 -# - + #$RSS_URL = "http://feeds.skynews.com/feeds/rss/world.xml" $RSS_URL = "https://yahoo.com/news/rss/world" # $RSS_URL = "https://rss.nytimes.com/services/xml/rss/nyt/HomePage.xml" @@ -20,5 +19,4 @@ write-host "" foreach ($item in $FileContent.rss.channel.item) { write-host "* "$item.title } - exit 0 diff --git a/Scripts/password.ps1 b/Scripts/password.ps1 index eb0e374b..74950c17 100755 --- a/Scripts/password.ps1 +++ b/Scripts/password.ps1 @@ -1,10 +1,11 @@ #!/snap/bin/powershell # +# Syntax: ./password.ps1 # Description: generates and prints a single new password # Author: Markus Fleschutz # Source: github.com/fleschutz/PowerShell # License: CC0 -# + $CharsPerPassword = 15 $MinCharCode = 33 $MaxCharCode = 126 diff --git a/Scripts/passwords.ps1 b/Scripts/passwords.ps1 index 161df2fd..c3d7d8be 100755 --- a/Scripts/passwords.ps1 +++ b/Scripts/passwords.ps1 @@ -1,10 +1,11 @@ #!/snap/bin/powershell # +# Syntax: ./passwords.ps1 # Description: generates and prints a list of new passwords # Author: Markus Fleschutz # Source: github.com/fleschutz/PowerShell # License: CC0 -# + $NumPasswords = 20 $CharsPerPassword = 15 $MinCharCode = 33 diff --git a/Scripts/poweroff.ps1 b/Scripts/poweroff.ps1 index df584cff..549449de 100755 --- a/Scripts/poweroff.ps1 +++ b/Scripts/poweroff.ps1 @@ -1,10 +1,11 @@ #!/snap/bin/powershell # +# Syntax: ./poweroff.ps1 # Description: halts the local computer, administrator rights are required # Author: Markus Fleschutz # Source: github.com/fleschutz/PowerShell # License: CC0 -# + #Requires -RunAsAdministrator Stop-Computer exit 0 diff --git a/Scripts/reboot.ps1 b/Scripts/reboot.ps1 index f6f6415c..971d5008 100755 --- a/Scripts/reboot.ps1 +++ b/Scripts/reboot.ps1 @@ -1,10 +1,11 @@ #!/snap/bin/powershell # +# Syntax: ./reboot.ps1 # Description: reboots the local computer, administrator rights are required # Author: Markus Fleschutz # Source: github.com/fleschutz/PowerShell # License: CC0 -# + #Requires -RunAsAdministrator Restart-Computer exit 0 diff --git a/Scripts/speak.ps1 b/Scripts/speak.ps1 index 5d0101a6..bc034a14 100755 --- a/Scripts/speak.ps1 +++ b/Scripts/speak.ps1 @@ -1,12 +1,12 @@ #!/snap/bin/powershell # +# Syntax: ./speak.ps1 # Description: speaks the given text # Author: Markus Fleschutz # Source: github.com/fleschutz/PowerShell # License: CC0 -# -$Text = "Hello World!" +$Text = "Hello World!" $voice = New-Object ComObject SAPI.SPVoice $voice.Speak($Text); exit 0 diff --git a/Scripts/test.ps1 b/Scripts/test.ps1 index 51cd0419..a5b0318d 100755 --- a/Scripts/test.ps1 +++ b/Scripts/test.ps1 @@ -5,7 +5,7 @@ # Author: Markus Fleschutz # Source: github.com/fleschutz/PowerShell # License: CC0 -# + write-output "✔️ PowerShell works. Details are:" echo $PSVersionTable exit 0 diff --git a/Scripts/train_dns_cache.ps1 b/Scripts/train_dns_cache.ps1 index 88c75e9e..9c6ff23d 100755 --- a/Scripts/train_dns_cache.ps1 +++ b/Scripts/train_dns_cache.ps1 @@ -1,11 +1,11 @@ #!/snap/bin/powershell # -# Syntax: train_dns_cache +# Syntax: ./train_dns_cache.ps1 # Description: trains the DNS cache with frequently used domain names # Author: Markus Fleschutz # Source: github.com/fleschutz/PowerShell # License: CC0 -# + $Table = import-csv domain_table.csv $StartTime = Get-Date diff --git a/Scripts/translate.ps1 b/Scripts/translate.ps1 index 453c76fe..fe77ed73 100755 --- a/Scripts/translate.ps1 +++ b/Scripts/translate.ps1 @@ -1,10 +1,11 @@ #!/snap/bin/powershell # +# Syntax: ./translate.ps1 # Description: translates the given text # Author: Markus Fleschutz # Source: github.com/fleschutz/PowerShell # License: CC0 -# + $SourceText = "Hello World!" $SourceLang = "en" $TargetLanguages = "af","da","de","el","es","hr","it","ja","ko","pl","pt","nl","ru","tr","uk","vi" diff --git a/Scripts/txt2wav.ps1 b/Scripts/txt2wav.ps1 index 8aff9c3b..fd5b2d46 100755 --- a/Scripts/txt2wav.ps1 +++ b/Scripts/txt2wav.ps1 @@ -1,10 +1,11 @@ #!/snap/bin/powershell # +# Syntax: ./txt2wav.ps1 # Description: converts the given text into an audio .WAV file # Author: Markus Fleschutz # Source: github.com/fleschutz/PowerShell # License: CC0 -# + # Configuration: $Text = "Hello, my name ist Bond, James Bond" $Speed = -1 # -10 is slowest, 10 is fastest diff --git a/Scripts/wakeup.ps1 b/Scripts/wakeup.ps1 index 8bf2d0d6..c6b04259 100755 --- a/Scripts/wakeup.ps1 +++ b/Scripts/wakeup.ps1 @@ -1,10 +1,11 @@ #!/snap/bin/powershell # +# Syntax: ./wakeup.ps1 # Description: sends a magic packet to the given computer, waking him up # Author: Markus Fleschutz # Source: github.com/fleschutz/PowerShell # License: CC0 -# + function Send-WOL { <# diff --git a/Scripts/weather.ps1 b/Scripts/weather.ps1 index 7ab5b319..3596d669 100755 --- a/Scripts/weather.ps1 +++ b/Scripts/weather.ps1 @@ -1,11 +1,11 @@ #!/snap/bin/powershell # -# Syntax: weather +# Syntax: ./weather.ps1 # Description: prints the current weather forecast # Author: Markus Fleschutz # Source: github.com/fleschutz/PowerShell # License: CC0 -# + $GeoLocation="" # empty means determine automatically (Invoke-WebRequest http://wttr.in/$GeoLocation -UserAgent "curl" ).Content exit 0 diff --git a/Scripts/zipdir.ps1 b/Scripts/zipdir.ps1 index a10c8fa2..f32e3e42 100755 --- a/Scripts/zipdir.ps1 +++ b/Scripts/zipdir.ps1 @@ -1,11 +1,11 @@ #!/snap/bin/powershell # -# Syntax: zipdir -# Description: creates a zip archive of the given folder +# Syntax: ./zipdir.ps1 +# Description: creates a zip archive from the given folder # Author: Markus Fleschutz # Source: github.com/fleschutz/PowerShell # License: CC0 -# + param([string]$Path) Compress-Archive -Path $Path -DestinationPath $Path.zip exit 0