PowerShell/Scripts/list-memos.ps1

41 lines
762 B
PowerShell
Raw Normal View History

2021-05-04 16:39:06 +02:00
<#
2021-07-13 21:10:02 +02:00
.SYNOPSIS
list-memos.ps1
.DESCRIPTION
Lists all memos in $HOME/Memos.csv
.EXAMPLE
PS> .\list-memos.ps1
.LINK
https://github.com/fleschutz/PowerShell
.NOTES
2021-08-03 15:53:57 +02:00
Author: Markus Fleschutz
License: CC0
2021-05-04 16:39:06 +02:00
#>
try {
$Path = "$HOME/Memos.csv"
2021-06-07 08:48:17 +02:00
if (test-path "$Path" -pathType leaf) {
2021-05-04 16:39:06 +02:00
write-progress "Reading $Path ..."
$Table = import-csv "$Path"
write-progress -completed "Reading $Path"
""
"Time User Text"
"---- ---- ----"
foreach($Row in $Table) {
$Time = $Row.Time
$User = $Row.User
$Text = $Row.Text
"$Time $User $Text"
}
} else {
2021-05-13 10:33:34 +02:00
"Sorry, no memos saved yet"
exit 1
2021-05-04 16:39:06 +02:00
}
exit 0
} catch {
write-error "⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
exit 1
}