reduce complexity

This commit is contained in:
Jacob Janzen 2024-12-29 11:52:48 -06:00
parent 3021fbae4d
commit d1dfa3db33

View file

@ -1,15 +1,15 @@
#!/bin/sh
create_ls_entry () {
echo "creating entry $2$1"
echo "creating entry $(pwd)$1"
echo "#+title: =~/$1=" > index.org
echo "* Directories" >> index.org
if [ "$1" != "" ]; then
echo "- [[$2$1..][=../=]]" >> index.org
echo "- [[../][=../=]]" >> index.org
fi
find -L -- . -maxdepth 1 -type d | sed '/^\.$/d' | sed 's/^\.\///' | sort | while read -r dir; do
if [ "$dir" != "*" ] && [ "$dir" != ".git" ]; then
echo "- [[$2$1$dir][=$dir/=]]" >> index.org
echo "- [[./$dir][=$dir/=]]" >> index.org
fi
done
files=$(find -L -- . -maxdepth 1 -type f | sed 's/^\.\///')
@ -33,8 +33,7 @@ create_ls_entry () {
create_dir_tree () {
ROOT="$HOME/dotfiles/$1"
URLROOT="../"
create_ls_entry "" "$URLROOT"
create_ls_entry ""
# iterate over all directories
find -L -- . -type d | sed '/^\.$/d' | while read -r dir; do