Skip to content

Instantly share code, notes, and snippets.

@pingyen
Created October 28, 2016 04:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pingyen/81b93c74eb1b977da6d800a090f5ba0c to your computer and use it in GitHub Desktop.
Save pingyen/81b93c74eb1b977da6d800a090f5ba0c to your computer and use it in GitHub Desktop.
Tar each directory separately
<?php
foreach (scandir('.') as $dir) {
if ($dir[0] === '.' || is_dir($dir) === false) {
continue;
}
shell_exec("tar zcvf $dir.tgz $dir");
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment