From c20d20183f95d65a71585425653bec259336b358 Mon Sep 17 00:00:00 2001 From: Jannetta Steyn <6432530+jsteyn@users.noreply.github.com> Date: Tue, 17 Oct 2023 16:06:02 +0100 Subject: [PATCH] Replace link to regular expressions lesson The link to the regular expressions lesson is broken. Replaced with https://librarycarpentry.org/lc-data-intro/01-regular-expressions.html --- episodes/07-find.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/episodes/07-find.md b/episodes/07-find.md index 1fb8d5671..a5713a132 100644 --- a/episodes/07-find.md +++ b/episodes/07-find.md @@ -272,7 +272,7 @@ the fact that patterns can include wildcards. (The technical name for these is **regular expressions**, which is what the 're' in 'grep' stands for.) Regular expressions are both complex and powerful; if you want to do complex searches, please look at the lesson -on [our website](https://v4.software-carpentry.org/regexp/index.html). As a taster, we can +on [our website](https://librarycarpentry.org/lc-data-intro/01-regular-expressions.html). As a taster, we can find lines that have an 'o' in the second position like this: ```bash