This repository has been archived on 2026-04-17. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
bhlib/util/whitespace.sh
Mikhail Romanko fc774fd0ff Refactor, separate docs from headers, add ru docs
Doxygen kind'a sucks and I need multilanguage documentation, so I did
that. Also, separated massive Math.h file into smaller files.
2025-06-21 20:12:15 +03:00

4 lines
159 B
Bash
Executable File

#!/bin/sh
find . \( -iname "*.h" -o -iname "*.c" -o -iname "*.md" -o -iname "*.pod" \) -exec sed -i.bak "s/[ ]*$//" {} \;
find . -iname "*.bak" -exec rm {} \;