mirror of
https://github.com/zeldaret/oot.git
synced 2024-11-11 03:39:59 +00:00
5b0f79ec6e
* update readme * fixes * update permissions for various things * typos
11 lines
179 B
Bash
Executable file
11 lines
179 B
Bash
Executable file
#!/usr/bin/env 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
|