1
0
Fork 0
mirror of https://github.com/notwa/rc synced 2024-06-26 09:07:12 -07:00
rc/sh/trunc

14 lines
394 B
Plaintext
Raw Normal View History

#!/usr/bin/env sh
2021-07-29 00:37:35 -07:00
# YES_ZSH
# YES_BASH
# YES_DASH
2021-07-29 00:37:35 -07:00
2021-07-30 17:57:08 -07:00
trunc() { ### @-
### truncate text to fit within your terminal using the unicode character `…`.
[ $# -le 1 ] || { printf "%s\n" "$0: too many arguments" >&2; return 1; }
2021-07-29 00:37:35 -07:00
COLUMNS=${COLUMNS:-$(tput cols)}
awk -vL=${1:-$COLUMNS} '{e=length>L?"…":"";print substr($0,0,L-(e?1:0)) e}'
}
[ "${SOURCING:-0}" -gt 0 ] || trunc "$@"