Merge pull request #2680 from nayasis/main
sort list in alphabetical order.
This commit is contained in:
commit
20fa64452a
3 changed files with 5 additions and 3 deletions
|
@ -7,4 +7,5 @@
|
|||
find /usr/share/retroarch/filters/64bit/video/ -name '*.filt' -print0 |
|
||||
while IFS= read -r -d '' line; do
|
||||
echo ${line#/usr/share/retroarch/filters/64bit/video/},
|
||||
done
|
||||
done | sort
|
||||
|
||||
|
|
|
@ -8,4 +8,5 @@
|
|||
find /storage/overlays/ -name '*.cfg' -print0 |
|
||||
while IFS= read -r -d '' line; do
|
||||
echo ${line#/storage/overlays/},
|
||||
done
|
||||
done | sort
|
||||
|
||||
|
|
|
@ -18,6 +18,6 @@ do
|
|||
find ${dir} -regex "${option}" -print0 |
|
||||
while IFS= read -r -d '' line; do
|
||||
echo ${line#${dir}/},
|
||||
done
|
||||
done | sort
|
||||
fi
|
||||
done
|
||||
|
|
Loading…
Reference in a new issue