mirror of
https://github.com/fleschutz/PowerShell.git
synced 2025-04-06 23:42:10 +02:00
Improved the scripts
This commit is contained in:
parent
f70b65d3e2
commit
77df424774
@ -12,7 +12,7 @@ close-windows-terminal.ps1, closes Windows Terminal gracefully
|
|||||||
configure-git.ps1, sets up the Git configuration
|
configure-git.ps1, sets up the Git configuration
|
||||||
csv-to-text.ps1, converts the given CSV file into a text list
|
csv-to-text.ps1, converts the given CSV file into a text list
|
||||||
decrypt-file.ps1, decrypts the given file
|
decrypt-file.ps1, decrypts the given file
|
||||||
display-time.ps1, displays the current time
|
display-time.ps1, displays the current time for 10 seconds by default
|
||||||
download.ps1, downloads the file/directory from the given URL
|
download.ps1, downloads the file/directory from the given URL
|
||||||
empty-dir.ps1, empties the given directory
|
empty-dir.ps1, empties the given directory
|
||||||
enable-crash-dumps.ps1, enables the writing of crash dumps
|
enable-crash-dumps.ps1, enables the writing of crash dumps
|
||||||
|
|
@ -20,7 +20,7 @@ The following PowerShell scripts can be found in the [Scripts/](Scripts/) subfol
|
|||||||
* [configure-git.ps1](Scripts/configure-git.ps1) - sets up the Git configuration
|
* [configure-git.ps1](Scripts/configure-git.ps1) - sets up the Git configuration
|
||||||
* [csv-to-text.ps1](Scripts/csv-to-text.ps1) - converts the given CSV file into a text list
|
* [csv-to-text.ps1](Scripts/csv-to-text.ps1) - converts the given CSV file into a text list
|
||||||
* [decrypt-file.ps1](Scripts/decrypt-file.ps1) - encrypts the given file
|
* [decrypt-file.ps1](Scripts/decrypt-file.ps1) - encrypts the given file
|
||||||
* [display-time.ps1](Scripts/display-time.ps1) - displays the current time
|
* [display-time.ps1](Scripts/display-time.ps1) - displays the current time for 10 seconds by default
|
||||||
* [download.ps1](Scripts/download.ps1) - downloads the file/directory from the given URL
|
* [download.ps1](Scripts/download.ps1) - downloads the file/directory from the given URL
|
||||||
* [empty-dir.ps1](Scripts/empty-dir.ps1) - empties the given directory
|
* [empty-dir.ps1](Scripts/empty-dir.ps1) - empties the given directory
|
||||||
* [enable-crash-dumps.ps1](Scripts/enable-crash-dumps.ps1) - enables the writing of crash dumps
|
* [enable-crash-dumps.ps1](Scripts/enable-crash-dumps.ps1) - enables the writing of crash dumps
|
||||||
|
@ -1,16 +1,18 @@
|
|||||||
#!/snap/bin/powershell
|
#!/snap/bin/powershell
|
||||||
<#
|
<#
|
||||||
.SYNTAX ./display-time.ps1
|
.SYNTAX ./display-time.ps1 [<seconds>]
|
||||||
.DESCRIPTION displays the current time
|
.DESCRIPTION displays the current time for 10 seconds by default
|
||||||
.LINK https://github.com/fleschutz/PowerShell
|
.LINK https://github.com/fleschutz/PowerShell
|
||||||
.NOTES Author: Markus Fleschutz / License: CC0
|
.NOTES Author: Markus Fleschutz / License: CC0
|
||||||
#>
|
#>
|
||||||
|
|
||||||
|
param([int]$Seconds = 10)
|
||||||
|
|
||||||
try {
|
try {
|
||||||
for ($i = 0; $i -lt 1000; $i++) {
|
for ([int]$i = 0; $i -lt $Seconds; $i++) {
|
||||||
$CurrentTime = Get-Date -format "yyyy-MM-dd HH:mm:ss"
|
|
||||||
clear-host
|
clear-host
|
||||||
write-output ""
|
write-output ""
|
||||||
|
$CurrentTime = Get-Date -format "yyyy-MM-dd HH:mm:ss"
|
||||||
./write-big $CurrentTime
|
./write-big $CurrentTime
|
||||||
write-output ""
|
write-output ""
|
||||||
start-sleep -s 1
|
start-sleep -s 1
|
||||||
|
@ -7,7 +7,7 @@
|
|||||||
#>
|
#>
|
||||||
|
|
||||||
try {
|
try {
|
||||||
Get-Module
|
get-module | format-table
|
||||||
exit 0
|
exit 0
|
||||||
} catch {
|
} catch {
|
||||||
write-error "ERROR in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
|
write-error "ERROR in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
|
||||||
|
@ -15,6 +15,7 @@ function ListScripts { param([string]$Path)
|
|||||||
'Description' = "$($Row.Description)"
|
'Description' = "$($Row.Description)"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
write-progress -completed "Reading $Path..."
|
||||||
write-output ""
|
write-output ""
|
||||||
write-output "($($Table.Count) PowerShell scripts total)"
|
write-output "($($Table.Count) PowerShell scripts total)"
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user