CHIP-tools/common.sh

18 lines
191 B
Bash
Raw Normal View History

2015-09-12 20:08:01 -04:00
#!/bin/bash
onMac() {
if [ "$(uname)" == "Darwin" ]; then
return 0;
else
return 1;
fi
}
filesize() {
if onMac; then
2015-09-12 23:15:36 -04:00
stat -f%z $1
2015-09-12 20:08:01 -04:00
else
2015-09-12 23:15:36 -04:00
stat --printf="%s" $1
2015-09-12 20:08:01 -04:00
fi
}