]> wagnertech.de Git - SVBaL.git/blob - bin/remove-bom.sh
check.html added
[SVBaL.git] / bin / remove-bom.sh
1 #!/bin/bash
2 set -e
3
4 if [ -z "$1" ]; then
5         echo "usage: remove-bom FILE"
6         exit 6
7 fi
8
9 sed -i '1s/^\xEF\xBB\xBF//' $1
10