add parent directory

This commit is contained in:
Jacob Janzen 2024-08-08 20:19:33 -05:00
parent 1169456544
commit a286545c79

View file

@ -3,9 +3,12 @@
create_ls_entry () { create_ls_entry () {
echo "#+title: =~/$1=" > index.org echo "#+title: =~/$1=" > index.org
echo "* Directories" >> index.org echo "* Directories" >> index.org
if [ "$1" != "" ]; then
echo "- [[https://jjanzen.ca/dotfiles/$1..][../]]" >> index.org
fi
find -- . -maxdepth 1 -type d | sed '/^\.$/d' | sed 's/^\.\///' | while read -r dir; do find -- . -maxdepth 1 -type d | sed '/^\.$/d' | sed 's/^\.\///' | while read -r dir; do
if [ "${dir}" != "*" ]; then if [ "${dir}" != "*" ]; then
echo "- [[https://jjanzen.ca/dotfiles/$1${dir}][${dir}]]" >> index.org echo "- [[https://jjanzen.ca/dotfiles/$1${dir}][${dir}/]]" >> index.org
fi fi
done done
echo "* Files" >> index.org echo "* Files" >> index.org