fix links
This commit is contained in:
parent
c62274d9cb
commit
83b283239f
1 changed files with 5 additions and 4 deletions
|
@ -4,11 +4,11 @@ create_ls_entry () {
|
||||||
echo "#+title: =~/$1=" > index.org
|
echo "#+title: =~/$1=" > index.org
|
||||||
echo "* Directories" >> index.org
|
echo "* Directories" >> index.org
|
||||||
if [ "$1" != "" ]; then
|
if [ "$1" != "" ]; then
|
||||||
echo "- [[https://jjanzen.ca/dotfiles/$1..][=../=]]" >> index.org
|
echo "- [[$2$1..][=../=]]" >> index.org
|
||||||
fi
|
fi
|
||||||
find -L -- . -maxdepth 1 -type d | sed '/^\.$/d' | sed 's/^\.\///' | while read -r dir; do
|
find -L -- . -maxdepth 1 -type d | sed '/^\.$/d' | sed 's/^\.\///' | while read -r dir; do
|
||||||
if [ "$dir" != "*" ] && [ "$dir" != ".git" ]; then
|
if [ "$dir" != "*" ] && [ "$dir" != ".git" ]; then
|
||||||
echo "- [[https://jjanzen.ca/dotfiles/$1$dir][=$dir/=]]" >> index.org
|
echo "- [[$2$1$dir][=$dir/=]]" >> index.org
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
echo "* Files" >> index.org
|
echo "* Files" >> index.org
|
||||||
|
@ -18,13 +18,14 @@ create_ls_entry () {
|
||||||
elif echo "$file" | grep -q "\.org$" && [ "$file" != "index.org" ]; then
|
elif echo "$file" | grep -q "\.org$" && [ "$file" != "index.org" ]; then
|
||||||
new_file=$(basename "$(grep '#+begin_src' "$file" | head -1 | cut -d ' ' -f 4)")
|
new_file=$(basename "$(grep '#+begin_src' "$file" | head -1 | cut -d ' ' -f 4)")
|
||||||
html=$(echo "$file" | sed 's/\.org$/\.html/')
|
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
|
fi
|
||||||
done
|
done
|
||||||
}
|
}
|
||||||
|
|
||||||
create_dir_tree () {
|
create_dir_tree () {
|
||||||
ROOT="$HOME/.dotfiles/$1"
|
ROOT="$HOME/.dotfiles/$1"
|
||||||
|
URLROOT="https://jjanzen.ca/dotfiles/$1/"
|
||||||
create_ls_entry ""
|
create_ls_entry ""
|
||||||
|
|
||||||
# iterate over all directories
|
# iterate over all directories
|
||||||
|
@ -33,7 +34,7 @@ create_dir_tree () {
|
||||||
|
|
||||||
dir=$(echo "$dir" | sed 's/^\.\///')
|
dir=$(echo "$dir" | sed 's/^\.\///')
|
||||||
|
|
||||||
create_ls_entry "$dir/"
|
create_ls_entry "$dir/" "$URLROOT"
|
||||||
|
|
||||||
cd "$ROOT" || exit
|
cd "$ROOT" || exit
|
||||||
done
|
done
|
||||||
|
|
Loading…
Add table
Reference in a new issue