2022-12-29 20:22:34 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
# Replace all instances of `img` in Markdown image links with `_img` (to reflect new directory structure)
|
|
|
|
|
2023-04-17 07:06:21 +01:00
|
|
|
find /home/thomas/repos/eolas/ -type f -name "*.md" | while
|
2022-12-29 20:22:34 +00:00
|
|
|
read file; do
|
2024-02-16 15:30:15 +00:00
|
|
|
sed -i 's/\/_img\//\/img\//g' $file
|
2022-12-29 20:22:34 +00:00
|
|
|
done
|
2024-02-16 15:19:05 +00:00
|
|
|
|
|
|
|
|
|
|
|
|