CHIP-tools/common.sh

20 lines
206 B
Bash
Executable File

#!/bin/bash
TIMEOUT=20
onMac() {
if [ "$(uname)" == "Darwin" ]; then
return 0;
else
return 1;
fi
}
filesize() {
if onMac; then
stat -f "%z" $1
else
stat --printf="%s" $1
fi
}