On 12/18/2019 9:45 PM, Eric Wong wrote: > This goes on top of your patch: ... > + ( cd "$1" && for i in *; do echo "$i"; done ) Could we drop the "cd" and "echo" processes with this line instead? for i in "$1"/*; do printf "$i\n"; done Thanks, -Stolee