more script modifications
This commit is contained in:
parent
6e22da1c85
commit
62c583a5c1
1 changed files with 4 additions and 4 deletions
|
@ -3,8 +3,10 @@
|
|||
create_ls_entry () {
|
||||
echo "#+title: =~/$1=" > index.org
|
||||
echo "* Directories" >> index.org
|
||||
for dir in */; do
|
||||
echo "- [[https://jjanzen.ca/dotfiles/$1/${dir}][${dir}]]" >> index.org
|
||||
find -- . -maxdepth 1 -type d | sed 's/^\.\///' | while read -r file; do
|
||||
if [ "${dir}" != "*" ]; then
|
||||
echo "- [[https://jjanzen.ca/dotfiles/$1/${dir}][${dir}]]" >> index.org
|
||||
fi
|
||||
done
|
||||
echo "* Files" >> index.org
|
||||
find -- . -maxdepth 1 -type f | sed 's/^\.\///' | while read -r file; do
|
||||
|
@ -30,8 +32,6 @@ create_ls_entry () {
|
|||
cd ~/.dotfiles || exit
|
||||
START=$(pwd)
|
||||
|
||||
create_ls_entry ""
|
||||
|
||||
# iterate over all files except the .git/ directory and .
|
||||
find -- . -type d | sed '/^\.\$/d' | sed '/^\.\/\.git\//d' | sed '/^\.\/.git/d' | while read -r dir; do
|
||||
cd "${dir}" || continue
|
||||
|
|
Loading…
Add table
Reference in a new issue