Last active
March 28, 2017 15:34
-
-
Save zored/8ffde76c8ec1617756de6156b2c63218 to your computer and use it in GitHub Desktop.
Convert comments to one-line when possible.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env php | |
<?php | |
$path = $argv[1]; | |
if (empty($path)) { | |
echo "Path is not set."; | |
exit(1); | |
} | |
file_put_contents( | |
$path, | |
preg_replace( | |
'#/\*\*?\s*\n\s*\*\s*(.*)\n\s*\*/#', | |
'/** $1 */', | |
file_get_contents($path) | |
) | |
); | |
echo "Ok! $path"; | |
exit(0); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment