mirror of
https://github.com/zeldaret/mm.git
synced 2024-11-24 05:19:53 +00:00
ec912054da
* Clean up .gitignore * Set exec bit on all python and shell scripts * Delete unused files * Add decomp-permuter repo * Update submodules
12 lines
179 B
Bash
Executable File
12 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
|