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
Just an alternative to
ls -d "$PWD/"*
to pinpoint that * is shell expansion, so
*
echo "$PWD/"*
would do the same (the drawback you cannot use -1 to separate by new lines, not spaces).
-1