chmod to all subfolders code example
Example 1: how to make all directory 775
find /opt/lampp/htdocs -type d -exec chmod 755 {} \;
find /opt/lampp/htdocs -type f -exec chmod 644 {} \;
Example 2: move all subfolders to parent folder linux
find . -maxdepth 1 -exec mv {} .. \;