I need to extract an archive and create a empty file in each of the folders contained within the archive.
I tried this:
for folder in `ls -d1 */` ; do touch "${folder}/COMPLETE"; done;
works just perfect till someone creates a folder with a space in its name.
How can I do this for all folders with or without spaces in their names?
\Hugo