debugging
This commit is contained in:
parent
62c583a5c1
commit
dc19c7ae8d
1 changed files with 2 additions and 3 deletions
|
@ -3,7 +3,7 @@
|
|||
create_ls_entry () {
|
||||
echo "#+title: =~/$1=" > index.org
|
||||
echo "* Directories" >> index.org
|
||||
find -- . -maxdepth 1 -type d | sed 's/^\.\///' | while read -r file; do
|
||||
find -- . -maxdepth 1 -type d | sed 's/^\.\///' | while read -r dir; do
|
||||
if [ "${dir}" != "*" ]; then
|
||||
echo "- [[https://jjanzen.ca/dotfiles/$1/${dir}][${dir}]]" >> index.org
|
||||
fi
|
||||
|
@ -20,8 +20,7 @@ create_ls_entry () {
|
|||
|
||||
if echo "${file}" | grep -q "\.org\$"; then
|
||||
new_file=$(basename "$(grep '#+begin_src' "${file}" | head -1 | cut -d ' ' -f 4)")
|
||||
fi
|
||||
if [ "$new_file" = "" ]; then
|
||||
else
|
||||
new_file=$file
|
||||
fi
|
||||
echo "- [[https://jjanzen.ca/dotfiles/$1/${file}][${new_file}]]" >> index.org
|
||||
|
|
Loading…
Add table
Reference in a new issue