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.

30 lines
624 B
Bash

4 years ago
#!/usr/bin/env bash
# vim:ts=4:sts=4:sw=4:et
#
# Author: Hari Sekhon
# Date: 2020-08-17 20:21:43 +0100 (Mon, 17 Aug 2020)
#
2 years ago
# https://github.com/HariSekhon/DevOps-Bash-tools
4 years ago
#
# License: see accompanying Hari Sekhon LICENSE file
#
# If you're using my code you're welcome to connect with me on LinkedIn and optionally send me feedback to help steer this or other code I publish
#
2 years ago
# https://www.linkedin.com/in/HariSekhon
4 years ago
#
# designed to be included from utils.sh
set -euo pipefail
[ -n "${DEBUG:-}" ] && set -x
if ! is_mac; then
return
fi
if ! type tac &>/dev/null; then
tac(){
gtac "$@"
}
fi