simplify logic

This commit is contained in:
Jacob Janzen 2024-10-01 18:16:37 -05:00
parent ed5d7dcb91
commit 477148d207

View file

@ -19,7 +19,7 @@ create_ls_entry () {
if [ "$file" = ".wallpaper" ]; then
echo "- [[https://wallhaven.cc/w/vgryy5][=.wallpaper=]]" >> index.org
elif echo "$file" | grep -q "\.org$" && [ "$file" != "index.org" ]; then
new_file=$(basename "$(grep '#+begin_src' "$file" | head -1 | cut -d ' ' -f 4)")
new_file=$(echo "$file" | sed 's/\.org$//')
html=$(echo "$file" | sed 's/\.org$/\.html/')
echo "- [[$2$1$html][=$new_file=]]" >> index.org
fi