I would like to output the list of items in a folder in the folowing way:
\"filename1\" \"filename2\" \"file name with spaces\" \"foldername\" \"folder name wit
try
ls | sed -e 's/^/"/g' -e 's/$/"/g' | tr '\n' ' '