add parent directory
This commit is contained in:
parent
1169456544
commit
a286545c79
1 changed files with 4 additions and 1 deletions
|
@ -3,9 +3,12 @@
|
|||
create_ls_entry () {
|
||||
echo "#+title: =~/$1=" > index.org
|
||||
echo "* Directories" >> index.org
|
||||
if [ "$1" != "" ]; then
|
||||
echo "- [[https://jjanzen.ca/dotfiles/$1..][../]]" >> index.org
|
||||
fi
|
||||
find -- . -maxdepth 1 -type d | sed '/^\.$/d' | sed 's/^\.\///' | while read -r dir; do
|
||||
if [ "${dir}" != "*" ]; then
|
||||
echo "- [[https://jjanzen.ca/dotfiles/$1${dir}][${dir}]]" >> index.org
|
||||
echo "- [[https://jjanzen.ca/dotfiles/$1${dir}][${dir}/]]" >> index.org
|
||||
fi
|
||||
done
|
||||
echo "* Files" >> index.org
|
||||
|
|
Loading…
Add table
Reference in a new issue