CHIP-tools/common.sh

20 lines
206 B
Bash
Raw Normal View History

2015-09-12 20:08:01 -04:00
#!/bin/bash
2015-09-17 03:26:38 -04:00
TIMEOUT=20
2015-09-12 20:08:01 -04:00
onMac() {
if [ "$(uname)" == "Darwin" ]; then
return 0;
else
return 1;
fi
}
filesize() {
if onMac; then
2015-09-14 22:29:33 -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
}