mirror of
https://github.com/fleschutz/PowerShell.git
synced 2025-06-12 07:57:01 +02:00
Rename to add-memo.ps1
This commit is contained in:
parent
489b0608e2
commit
d12a27ace0
@ -1,5 +1,6 @@
|
|||||||
Script,Description
|
Script,Description
|
||||||
add-firewall-rules.ps1, adds firewall rules to the given executables (needs admin rights)
|
add-firewall-rules.ps1, adds firewall rules to the given executables (needs admin rights)
|
||||||
|
add-memo.ps1, adds the given memo text to $HOME/Memos.csv
|
||||||
build-repo.ps1, builds the current/given Git repository
|
build-repo.ps1, builds the current/given Git repository
|
||||||
build-repos.ps1, builds all Git repositories under the current/given directory
|
build-repos.ps1, builds all Git repositories under the current/given directory
|
||||||
cd-desktop.ps1, go to the user's desktop folder
|
cd-desktop.ps1, go to the user's desktop folder
|
||||||
@ -197,7 +198,6 @@ write-big.ps1, writes the given text in big letters
|
|||||||
write-blue.ps1, writes the given text in a blue foreground color
|
write-blue.ps1, writes the given text in a blue foreground color
|
||||||
write-braille.ps1, writes the given text in Braille
|
write-braille.ps1, writes the given text in Braille
|
||||||
write-green.ps1, writes the given text in a green foreground color
|
write-green.ps1, writes the given text in a green foreground color
|
||||||
write-logbook.ps1, writes the given text to the logbook
|
|
||||||
write-lowercase.ps1, writes the given text in lowercase letters
|
write-lowercase.ps1, writes the given text in lowercase letters
|
||||||
write-marquee.ps1, writes the given text as marquee
|
write-marquee.ps1, writes the given text as marquee
|
||||||
write-morse-code.ps1, writes the given text in Morse code
|
write-morse-code.ps1, writes the given text in Morse code
|
||||||
|
Can't render this file because it has a wrong number of fields in line 192.
|
@ -173,6 +173,7 @@ Mega Collection of PowerShell Scripts
|
|||||||
|
|
||||||
🛒 Various PowerShell Scripts
|
🛒 Various PowerShell Scripts
|
||||||
------------------------------
|
------------------------------
|
||||||
|
* [add-memo.ps1](Scripts/add-memo.ps1) - adds the given memo text to $HOME/Memos.csv
|
||||||
* [check-ipv4-address.ps1](Scripts/check-ipv4-address.ps1) - checks the given IPv4 address for validity
|
* [check-ipv4-address.ps1](Scripts/check-ipv4-address.ps1) - checks the given IPv4 address for validity
|
||||||
* [check-ipv6-address.ps1](Scripts/check-ipv6-address.ps1) - checks the given IPv6 address for validity
|
* [check-ipv6-address.ps1](Scripts/check-ipv6-address.ps1) - checks the given IPv6 address for validity
|
||||||
* [check-mac-address.ps1](Scripts/check-mac-address.ps1) - checks the given MAC address for validity
|
* [check-mac-address.ps1](Scripts/check-mac-address.ps1) - checks the given MAC address for validity
|
||||||
@ -224,7 +225,6 @@ Mega Collection of PowerShell Scripts
|
|||||||
* [write-blue.ps1](Scripts/write-blue.ps1) - writes the given text in a blue foreground color
|
* [write-blue.ps1](Scripts/write-blue.ps1) - writes the given text in a blue foreground color
|
||||||
* [write-braille.ps1](Scripts/write-braille.ps1) - writes the given text in Braille
|
* [write-braille.ps1](Scripts/write-braille.ps1) - writes the given text in Braille
|
||||||
* [write-green.ps1](Scripts/write-green.ps1) - writes the given text in a green foreground color
|
* [write-green.ps1](Scripts/write-green.ps1) - writes the given text in a green foreground color
|
||||||
* [write-logbook.ps1](Scripts/write-logbook.ps1) - writes the given text to the logbook
|
|
||||||
* [write-lowercase.ps1](Scripts/write-lowercase.ps1) - writes the given text in lowercase letters
|
* [write-lowercase.ps1](Scripts/write-lowercase.ps1) - writes the given text in lowercase letters
|
||||||
* [write-marquee.ps1](Scripts/write-marquee.ps1) - writes the given text as marquee
|
* [write-marquee.ps1](Scripts/write-marquee.ps1) - writes the given text as marquee
|
||||||
* [write-morse-code.ps1](Scripts/write-morse-code.ps1) - writes the given text in Morse code
|
* [write-morse-code.ps1](Scripts/write-morse-code.ps1) - writes the given text in Morse code
|
||||||
|
@ -1,20 +1,24 @@
|
|||||||
<#
|
<#
|
||||||
.SYNTAX write-logbook.ps1 [<text>]
|
.SYNTAX add-memo.ps1 [<text>]
|
||||||
.DESCRIPTION writes the given text to the logbook (in ../Data/logbook.csv)
|
.DESCRIPTION adds the given memo text to $HOME/Memos.csv
|
||||||
.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($Text = "")
|
param($Text = "")
|
||||||
if ($Text -eq "" ) { $Text = read-host "Enter the text to write" }
|
if ($Text -eq "" ) { $Text = read-host "Enter the memo text to add" }
|
||||||
|
|
||||||
try {
|
try {
|
||||||
|
$Path = "$HOME/Memos.csv"
|
||||||
$Time = get-date -format "yyyy-MM-ddTHH:mm:ssZ" -asUTC
|
$Time = get-date -format "yyyy-MM-ddTHH:mm:ssZ" -asUTC
|
||||||
$User = $(whoami)
|
$User = $(whoami)
|
||||||
$Line = "$Time,$User,$Text"
|
$Line = "$Time,$User,$Text"
|
||||||
|
|
||||||
$PathToRepo=(get-item $MyInvocation.MyCommand.Path).directory.parent
|
if (-not(test-path "$Path")) {
|
||||||
write-output $Line >> "$PathToRepo/Data/logbook.csv"
|
write-output "Time,User,Text" > "$Path"
|
||||||
|
write-output $Line >> "$Path"
|
||||||
|
|
||||||
|
"✔️ added to 📄$Path"
|
||||||
exit 0
|
exit 0
|
||||||
} catch {
|
} catch {
|
||||||
write-error "⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
|
write-error "⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
|
Loading…
x
Reference in New Issue
Block a user