auto index files

This commit is contained in:
Jacob Janzen 2024-08-08 17:02:08 -05:00
parent 265c6e7526
commit fa19ef08d5
2 changed files with 31 additions and 0 deletions

View file

@ -9,6 +9,8 @@ sources:
tasks:
- build: |
emacs --batch -f package-initialize --script ~/website/publish.el
cd ~/.dotfiles
./fix-dotfile-paths.sh
- package: |
cd ~/public_html/
tar -cvz . > ../site.tar.gz

29
fix-dotfile-paths.sh Executable file
View file

@ -0,0 +1,29 @@
#!/bin/sh
START=$(pwd)
find -- . -type d | sed '/^\.\$/d' | sed '/^\.\/\.git\//d' | sed '/^\.\/.git/d' | while read -r line; do
cd "${line}" || continue
line=$(echo "${line}" | sed 's/^\.\///')
if ! test -f ./index.org; then
echo "#+title: =~/${line}=" > index.org
echo "* Directories" >> index.org
for dir in */; do
echo "- [[/dotfiles/${line}/${dir}][${dir}]]" >> index.org
done
echo "* Files" >> index.org
for file in *; do
if test -f "${file}"; then
if echo "${file}" | grep -q "\.org\$"; then
new_file=$(basename "$(grep '#+begin_src' "${file}" | head -1 | cut -d ' ' -f 4)")
fi
if [ "$new_file" = "" ]; then
new_file=$file
fi
echo "- [[/dotfiles/${line}/${file}][${new_file}]]" >> index.org
fi
done
fi
cd "${START}" || exit
done