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 () {
|
create_ls_entry () {
|
||||||
echo "#+title: =~/$1=" > index.org
|
echo "#+title: =~/$1=" > index.org
|
||||||
echo "* Directories" >> index.org
|
echo "* Directories" >> index.org
|
||||||
for dir in */; do
|
find -- . -maxdepth 1 -type d | sed 's/^\.\///' | while read -r file; do
|
||||||
echo "- [[https://jjanzen.ca/dotfiles/$1/${dir}][${dir}]]" >> index.org
|
if [ "${dir}" != "*" ]; then
|
||||||
|
echo "- [[https://jjanzen.ca/dotfiles/$1/${dir}][${dir}]]" >> index.org
|
||||||
|
fi
|
||||||
done
|
done
|
||||||
echo "* Files" >> index.org
|
echo "* Files" >> index.org
|
||||||
find -- . -maxdepth 1 -type f | sed 's/^\.\///' | while read -r file; do
|
find -- . -maxdepth 1 -type f | sed 's/^\.\///' | while read -r file; do
|
||||||
|
@ -30,8 +32,6 @@ create_ls_entry () {
|
||||||
cd ~/.dotfiles || exit
|
cd ~/.dotfiles || exit
|
||||||
START=$(pwd)
|
START=$(pwd)
|
||||||
|
|
||||||
create_ls_entry ""
|
|
||||||
|
|
||||||
# iterate over all files except the .git/ directory and .
|
# 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
|
find -- . -type d | sed '/^\.\$/d' | sed '/^\.\/\.git\//d' | sed '/^\.\/.git/d' | while read -r dir; do
|
||||||
cd "${dir}" || continue
|
cd "${dir}" || continue
|
||||||
|
|
Loading…
Add table
Reference in a new issue