fix bug hopefully

This commit is contained in:
Jacob Janzen 2024-10-01 20:09:04 -05:00
parent 0fcaa9bdf1
commit 25706c1435

View file

@ -17,7 +17,7 @@ create_ls_entry () {
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 echo $file | grep -q '^\.'; then if echo $file | grep -q '^\.'; then
tmp=$(echo "$file" | sed 's/^\.//' | sed 's/$/.hidden/') tmp=$(echo "$file" | sed 's/^\.//' | sed 's/.org$/.hidden.org/')
mv $file $tmp mv $file $tmp
fi fi
if [ "$file" = ".wallpaper" ]; then if [ "$file" = ".wallpaper" ]; then