aboutsummaryrefslogtreecommitdiff
path: root/test/test-lib-FREEBSD.sh
blob: d1840b5637fb25e3db806ce320f75a85010994f6 (plain)
# If present, use GNU Coreutils instead of a native BSD utils
if command -v gdate >/dev/null
   then
       date () { gdate "$@"; }
       base64 () { gbase64 "$@"; }
       wc () { gwc "$@"; }
       sed () { gsed "$@"; }
       sha256sum () { gsha256sum "$@"; }
   fi