PowerShell/Scripts/add-memo.ps1
2021-07-13 19:03:30 +02:00

34 lines
731 B
PowerShell
Executable File

<#
.SYNOPSIS
add-memo.ps1 [<text>]
.DESCRIPTION
Adds the given memo text to $HOME/Memos.csv
.EXAMPLE
PS> .\add-memo.ps1 "Buy apples"
.LINK
https://github.com/fleschutz/PowerShell
.NOTES
Author: Markus Fleschutz / License: CC0
#>
param($Text = "")
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"
if (-not(test-path "$Path" -pathType leaf)) {
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])"
exit 1
}