[go: up one dir, main page]

Menu

[r61]: / engine / bgui2 / helper.sh  Maximize  Restore  History

Download this file

9 lines (8 with data), 182 Bytes

1
2
3
4
5
6
7
8
9
#! /bin/sh
#
# Sets up the BGui 2.0 package for building under Unix, converting text
# files from CR/LF to LF format.
echo $1
mv $1 _tmpfile
tr -d \\\r < _tmpfile > $1
rm _tmpfile