update scripts to use Eolas

This commit is contained in:
thomasabishop 2023-04-17 07:06:21 +01:00
parent 510fb5a0f6
commit f63b14d87d
2 changed files with 2 additions and 2 deletions

View file

@ -1,3 +1,3 @@
#!/bin/bash
rg "$@" /home/thomas/repos/computer_science/ --type markdown
rg "$@" /home/thomas/repos/eolas/ --type markdown

View file

@ -2,7 +2,7 @@
# Replace all instances of `img` in Markdown image links with `_img` (to reflect new directory structure)
find /home/thomas/repos/computer_science/ -type f -name "*.md" | while
find /home/thomas/repos/eolas/ -type f -name "*.md" | while
read file; do
sed -i 's/\/img\//\/_img\//g' $file
done