I am writing a shell script that takes file paths as input.
For this reason, I need to generate recursive file listings with full paths. For example, the file
You might want to try this.
for name in /home/ken/foo/bar/* do echo $name done
You can get abs path using for loop and echo simply without find.
for
echo
find