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
lspwd() { for i in $@; do ls -d -1 $PWD/$i; done }