reduce complexity
This commit is contained in:
parent
3021fbae4d
commit
d1dfa3db33
1 changed files with 4 additions and 5 deletions
|
@ -1,15 +1,15 @@
|
|||
#!/bin/sh
|
||||
|
||||
create_ls_entry () {
|
||||
echo "creating entry $2$1"
|
||||
echo "creating entry $(pwd)$1"
|
||||
echo "#+title: =~/$1=" > index.org
|
||||
echo "* Directories" >> index.org
|
||||
if [ "$1" != "" ]; then
|
||||
echo "- [[$2$1..][=../=]]" >> index.org
|
||||
echo "- [[../][=../=]]" >> index.org
|
||||
fi
|
||||
find -L -- . -maxdepth 1 -type d | sed '/^\.$/d' | sed 's/^\.\///' | sort | while read -r dir; do
|
||||
if [ "$dir" != "*" ] && [ "$dir" != ".git" ]; then
|
||||
echo "- [[$2$1$dir][=$dir/=]]" >> index.org
|
||||
echo "- [[./$dir][=$dir/=]]" >> index.org
|
||||
fi
|
||||
done
|
||||
files=$(find -L -- . -maxdepth 1 -type f | sed 's/^\.\///')
|
||||
|
@ -33,8 +33,7 @@ create_ls_entry () {
|
|||
|
||||
create_dir_tree () {
|
||||
ROOT="$HOME/dotfiles/$1"
|
||||
URLROOT="../"
|
||||
create_ls_entry "" "$URLROOT"
|
||||
create_ls_entry ""
|
||||
|
||||
# iterate over all directories
|
||||
find -L -- . -type d | sed '/^\.$/d' | while read -r dir; do
|
||||
|
|
Loading…
Add table
Reference in a new issue