This commit is contained in:
Nathaniel Landau
2021-07-21 13:09:35 -04:00
parent 0b7b88b5e5
commit b1df496e95
6 changed files with 68 additions and 16 deletions

View File

@@ -23,6 +23,7 @@ _listFiles_() {
case "$t" in
glob | Glob | g | G)
while read -r fileMatch; do
e="$(realpath "${fileMatch}")"
echo "${e}"
done < <(find "${d}" -iname "${p}" -type f -maxdepth 1 | sort)
;;
@@ -37,7 +38,6 @@ _listFiles_() {
return 1
;;
esac
}
_backupFile_() {