Update of /cvsroot/wxlua/website/download
In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv4495/download
Added Files:
fixeol.sh
Log Message:
fixed scripts for EOL
--- NEW FILE: fixeol.sh ---
#!/bin/sh
# the directory where file2convert are
cmd=unix2dos
dir=`pwd`/wxLua
# NOT NECESSARY AS unix2dos will already print out the names of the processed files
# for f in `find .|grep ".dsp"`; do echo $f; done
# for f in `find .|grep ".dsw"`; do echo $f; done
# for f in `find .|grep "makefile.vc"`; do echo $f; done
# for f in `find .|grep "makefile.wat"`; do echo $f; done
# for f in `find .|grep "makefile.bcc"`; do echo $f; done
# do the UNIX -> DOS conversion
for f in `find $dir|grep ".dsp"`; do $cmd $f; done
for f in `find $dir|grep ".dsw"`; do $cmd $f; done
for f in `find $dir|grep "makefile.vc"`; do $cmd $f; done
for f in `find $dir|grep "makefile.wat"`; do $cmd $f; done
for f in `find $dir|grep "makefile.bcc"`; do $cmd $f; done
|