fix links

This commit is contained in:
Jacob Janzen 2024-08-09 22:38:51 -05:00
parent c62274d9cb
commit 83b283239f

View file

@ -4,11 +4,11 @@ create_ls_entry () {
echo "#+title: =~/$1=" > index.org
echo "* Directories" >> index.org
if [ "$1" != "" ]; then
echo "- [[https://jjanzen.ca/dotfiles/$1..][=../=]]" >> index.org
echo "- [[$2$1..][=../=]]" >> index.org
fi
find -L -- . -maxdepth 1 -type d | sed '/^\.$/d' | sed 's/^\.\///' | while read -r dir; do
if [ "$dir" != "*" ] && [ "$dir" != ".git" ]; then
echo "- [[https://jjanzen.ca/dotfiles/$1$dir][=$dir/=]]" >> index.org
echo "- [[$2$1$dir][=$dir/=]]" >> index.org
fi
done
echo "* Files" >> index.org
@ -18,13 +18,14 @@ create_ls_entry () {
elif echo "$file" | grep -q "\.org$" && [ "$file" != "index.org" ]; then
new_file=$(basename "$(grep '#+begin_src' "$file" | head -1 | cut -d ' ' -f 4)")
html=$(echo "$file" | sed 's/\.org$/\.html/')
echo "- [[https://jjanzen.ca/dotfiles/$1$html][=$new_file=]]" >> index.org
echo "- [[$2$1$html][=$new_file=]]" >> index.org
fi
done
}
create_dir_tree () {
ROOT="$HOME/.dotfiles/$1"
URLROOT="https://jjanzen.ca/dotfiles/$1/"
create_ls_entry ""
# iterate over all directories
@ -33,7 +34,7 @@ create_dir_tree () {
dir=$(echo "$dir" | sed 's/^\.\///')
create_ls_entry "$dir/"
create_ls_entry "$dir/" "$URLROOT"
cd "$ROOT" || exit
done