# strip-bom-cli **Repository Path**: mirrors_sindresorhus/strip-bom-cli ## Basic Information - **Project Name**: strip-bom-cli - **Description**: Strip UTF-8 byte order mark (BOM) - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-08-19 - **Last Updated**: 2026-05-09 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # strip-bom-cli > Strip UTF-8 [byte order mark](http://en.wikipedia.org/wiki/Byte_order_mark#UTF-8) (BOM) From Wikipedia: > The Unicode Standard permits the BOM in UTF-8, but does not require nor recommend its use. Byte order has no meaning in UTF-8. ## Install ```sh npm install --global strip-bom-cli ``` ## Usage ``` $ strip-bom --help Usage $ strip-bom > $ strip-bom --in-place … $ cat | strip-bom > Options --in-place Modify the file in-place (be careful!) Examples $ strip-bom unicorn.txt > unicorn-without-bom.txt $ strip-bom --in-place unicorn.txt $ strip-bom --in-place *.txt ``` ## Related - [strip-bom](https://github.com/sindresorhus/strip-bom) - API for this package