mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-22 10:58:10 +01:00
10 lines
270 B
Bash
10 lines
270 B
Bash
|
# 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
|