Joe Lillibridge 95c99334da
wip
2024-10-29 22:57:09 -05:00

6 lines
158 B
Plaintext

# Preserve color when handed around via STD IO
# example usage:
# $ unbuff ls --color=auto -F | tee output.txt
unbuff() {
script -q >(cat) $* >/dev/null
}