forked from fleschutz/PowerShell
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlist-memos.ps1
More file actions
executable file
·39 lines (36 loc) · 838 Bytes
/
Copy pathlist-memos.ps1
File metadata and controls
executable file
·39 lines (36 loc) · 838 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<#
.SYNOPSIS
Lists all memos in $HOME/Memos.csv
.DESCRIPTION
This script lists all memo entries in Memos.csv in the home folder.
.EXAMPLE
PS> ./list-memos
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK
https://github.com/fleschutz/PowerShell
#>
try {
$Path = "$HOME/Memos.csv"
if (test-path "$Path" -pathType leaf) {
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 {
"Sorry, no memos saved yet"
exit 1
}
exit 0 # success
} catch {
"⚠️ Error: $($Error[0]) ($($MyInvocation.MyCommand.Name):$($_.InvocationInfo.ScriptLineNumber))"
exit 1
}