Skip to content

Instantly share code, notes, and snippets.

@velosipedist
Last active January 2, 2016 17:59
Show Gist options
  • Save velosipedist/8340934 to your computer and use it in GitHub Desktop.
Save velosipedist/8340934 to your computer and use it in GitHub Desktop.
Chmod over all dirs & files separately, when no ssh around
<?php
`cd "../.."; chmod 777 $(find ./* -type d); chmod 666 $(find ./* -type f)`;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment