{"revision": {"id": "f348ad9a-2f95-11f1-82c7-e86a64d24d78", "node_id": "f348124b-2f95-11f1-a15f-e86a64d24d78", "user_id": "edc3f576-2f95-11f1-900f-e86a64d24d78", "author": "foxhop", "data": "advanced bash techniques\r\n============================\r\n\r\nfind and change all files:\r\n\r\n sudo find . -type f -print0 | xargs -0 ls -hal\r\n\r\n sudo find . -type f -print0 | xargs -0 sudo chown www-data:www-data\r\n\r\n sudo find . -type f -print0 | xargs -0 sudo chmod 0644\r\n\r\nfind and change all directories:\r\n\r\n sudo find . -type d -print0 | xargs -0 sudo chmod 0775", "source_format": "rst", "revision_number": 1, "created": 1308529956000}}