For all folders and files in the current directory
for file in *; do
echo "put $file"
done
Or, if you want to include subdirectories and files only:
find . -type f -exec echo put {} \;
If you want to include the folders themselves, take out the -type f
part.