diff options
author | Matthew Lemon <y@yulqen.org> | 2023-10-04 15:43:00 +0100 |
---|---|---|
committer | Matthew Lemon <y@yulqen.org> | 2023-10-04 15:43:00 +0100 |
commit | 4d80902528335a2557a2d23e6d4b4af5e22e595f (patch) | |
tree | 698f6222bca57cf46974a4169413fc08dff1ad07 | |
parent | 1c322f04a970d2573a863d01b2c9d360dfaab19a (diff) |
Correct path
-rwxr-xr-x | journal/pull_url_from_journal.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/journal/pull_url_from_journal.pl b/journal/pull_url_from_journal.pl index 66941cf..d6ae0b6 100755 --- a/journal/pull_url_from_journal.pl +++ b/journal/pull_url_from_journal.pl @@ -3,7 +3,7 @@ use warnings; use strict; -my $journal = "/home/lemon/Notes/journal"; +my $journal = "/home/lemon/Documents/Notes/journal"; my $line = `grep -R $ARGV[0] $journal | cut -f3- -d' '| fzf `; chomp $line; |