mirror of
https://github.com/stefanberger/libtpms
synced 2025-08-23 16:01:32 +00:00
15 lines
228 B
Plaintext
15 lines
228 B
Plaintext
# SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
# Get the size of a file in bytes
|
|
#
|
|
# @1: filename
|
|
function get_filesize()
|
|
{
|
|
if [[ "$(uname -s)" =~ (Linux|CYGWIN_NT-) ]]; then
|
|
stat -c%s "$1"
|
|
else
|
|
# OpenBSD
|
|
stat -f%z "$1"
|
|
fi
|
|
}
|