mirror of
https://github.com/zeldaret/oot.git
synced 2024-11-10 19:20:13 +00:00
9 lines
158 B
Bash
9 lines
158 B
Bash
var="$1"
|
|
if [ ! -n "$var" ]
|
|
then
|
|
var=dos2unix
|
|
fi
|
|
|
|
find src -type f -print0 | xargs -0 $var
|
|
find include -type f -print0 | xargs -0 $var
|
|
$var checksum.md5
|