diff --git a/_scripts/query.sh b/_scripts/query.sh index 17a5ca1..68285af 100755 --- a/_scripts/query.sh +++ b/_scripts/query.sh @@ -1,3 +1,3 @@ #!/bin/bash -rg "$@" /home/thomas/repos/computer_science/ --type markdown +rg "$@" /home/thomas/repos/eolas/ --type markdown diff --git a/_scripts/rename_img_links.sh b/_scripts/rename_img_links.sh index 05e54ea..9a49ec4 100755 --- a/_scripts/rename_img_links.sh +++ b/_scripts/rename_img_links.sh @@ -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