You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
194 B
Bash

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