PowerShell/Scripts/list-memos.ps1

39 lines
773 B
PowerShell
Raw Normal View History

2021-09-27 10:38:12 +02:00
<#
2021-07-13 21:10:02 +02:00
.SYNOPSIS
Lists your memo entries
2021-10-04 21:29:23 +02:00
.DESCRIPTION
This PowerShell script lists all memo entries in Memos.csv in your home folder.
2021-07-13 21:10:02 +02:00
.EXAMPLE
2023-08-06 21:35:36 +02:00
PS> ./list-memos.ps1
2021-07-13 21:10:02 +02:00
.LINK
https://github.com/fleschutz/PowerShell
2022-01-29 12:47:46 +01:00
.NOTES
2022-09-06 21:42:04 +02:00
Author: Markus Fleschutz | License: CC0
2021-05-04 16:39:06 +02:00
#>
try {
$Path = "~/Memos.csv"
if (Test-Path "$Path" -pathType leaf) {
2021-05-04 16:39:06 +02:00
write-progress "Reading $Path ..."
$Table = Import-CSV "$Path"
2021-05-04 16:39:06 +02:00
write-progress -completed "Reading $Path"
""
"Time Text"
"---- ----"
2021-05-04 16:39:06 +02:00
foreach($Row in $Table) {
$Time = $Row.Time
$Text = $Row.Text
"$Time $Text"
2021-05-04 16:39:06 +02:00
}
} else {
2021-05-13 10:33:34 +02:00
"Sorry, no memos saved yet"
exit 1
2021-05-04 16:39:06 +02:00
}
2021-09-27 10:09:45 +02:00
exit 0 # success
2021-05-04 16:39:06 +02:00
} catch {
2022-04-13 12:06:32 +02:00
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
2021-05-04 16:39:06 +02:00
exit 1
}