simpler and more correct file detection
This commit is contained in:
parent
41e89d4de5
commit
dd77b86915
1 changed files with 1 additions and 1 deletions
|
@ -13,7 +13,7 @@ create_ls_entry () {
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
files=$(find -L -- . -maxdepth 1 -type f | sed 's/^\.\///')
|
files=$(find -L -- . -maxdepth 1 -type f | sed 's/^\.\///')
|
||||||
if [ "$(echo "$files" | wc -l | sed 's/[ \t]*//g')" != 0 ]; then
|
if [ "$files" != '' ]; then
|
||||||
echo '* Files' >> index.org
|
echo '* Files' >> index.org
|
||||||
echo "$files" | sort | while read -r file; do
|
echo "$files" | sort | while read -r file; do
|
||||||
if [ "$file" = ".wallpaper" ]; then
|
if [ "$file" = ".wallpaper" ]; then
|
||||||
|
|
Loading…
Add table
Reference in a new issue