Rename to add-memo.ps1

This commit is contained in:
Markus Fleschutz
2021-05-04 16:31:15 +02:00
parent 489b0608e2
commit d12a27ace0
3 changed files with 11 additions and 7 deletions

View File

@ -1,20 +1,24 @@
<#
.SYNTAX write-logbook.ps1 [<text>]
.DESCRIPTION writes the given text to the logbook (in ../Data/logbook.csv)
.SYNTAX add-memo.ps1 [<text>]
.DESCRIPTION adds the given memo text to $HOME/Memos.csv
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
#>
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 {
$Path = "$HOME/Memos.csv"
$Time = get-date -format "yyyy-MM-ddTHH:mm:ssZ" -asUTC
$User = $(whoami)
$Line = "$Time,$User,$Text"
$PathToRepo=(get-item $MyInvocation.MyCommand.Path).directory.parent
write-output $Line >> "$PathToRepo/Data/logbook.csv"
if (-not(test-path "$Path")) {
write-output "Time,User,Text" > "$Path"
write-output $Line >> "$Path"
"✔️ added to 📄$Path"
exit 0
} catch {
write-error "⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"