An open API service indexing awesome lists of open source software.

https://github.com/jakubboucek/convert-spaces-indentation-to-tabs

Very simple CLI tool to batch convert spaces indentations to tabs in PHP files
https://github.com/jakubboucek/convert-spaces-indentation-to-tabs

Last synced: 4 months ago
JSON representation

Very simple CLI tool to batch convert spaces indentations to tabs in PHP files

Awesome Lists containing this project

README

        

# Convert spaces indentation to tabs in PHP files
Very simple CLI too to batch convert spaces indentations to tabs in PHP files with inteligent space counts grouping.

```bash
user@dir: find /path/to/files/ -type f -name '*.php' -exec php /path/to/convert-tabs.php {} \;
```

If file looks good (spaces are consistently), file is converted without backup.

Tool detect inconsistencies, like a one some odd spaces indentated row between even spaces.