read from folder

Collegues
I have a number of files in a folder.
Each file I would like to exicute one shell script .
How to do it in shell
With tanks and regards
Jaganadh.G

hey man, try this one

for file in folder/* ; do
echo $file
done

gets more complycated when there's spaces in the file/folder names.
as of my experience this works in bash/sh/ksh.

ls * | xargs -n1 script