simpler and more correct file detection

This commit is contained in:
Jacob Janzen 2024-08-10 12:22:34 -05:00
parent 41e89d4de5
commit dd77b86915

View file

@ -13,7 +13,7 @@ create_ls_entry () {
fi fi
done done
files=$(find -L -- . -maxdepth 1 -type f | sed 's/^\.\///') files=$(find -L -- . -maxdepth 1 -type f | sed 's/^\.\///')
if [ "$(echo "$files" | wc -l | sed 's/[ \t]*//g')" != 0 ]; then if [ "$files" != '' ]; then
echo '* Files' >> index.org echo '* Files' >> index.org
echo "$files" | sort | while read -r file; do echo "$files" | sort | while read -r file; do
if [ "$file" = ".wallpaper" ]; then if [ "$file" = ".wallpaper" ]; then