How would I get awk to output the whole file name in ls -l if some of the files have spaces in them. Usually, I can run this command:
ls -l
Just for completion. It can also be done with sed:
# just an exercise in regex matching ... ls -l | sed -E -e '1d; s/^([^ ]+ +){8}//'