~dricottone/my-utils

ref: b29d2b4a9bcb2e3b35c41e5dbb43d6e031999a06 my-utils/tlog -rwxr-xr-x 824 bytes
b29d2b4aDominic Ricottone Restarting with fresh commit history 5 years ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
#!/bin/bash

# tlog
# ====
# Usage: tlog TARGET [OPTIONS]
#
# Writes input to a target file while stripping ANSI codes, and returns input
# as it was.

help_msg() {
  cat <<-EOF
	Usage: tlog FILENAME [OPTIONS]
	Options:
	 -a, --append  append to target file instead of overwriting
	 -h, --help    print this message
	EOF
  exit 1
}

err_msg() {
  (>&2 echo "$1")
  exit 1
}

if [[ $# -lt 1 ]]; then
  err_msg "Usage: tlog TARGET [OPTIONS]"
fi

APPEND=0
LOGFILE=
while [[ $# -gt 0 ]]; do
  case $1 in
    -a|--append) APPEND=1; shift;;
    -h|--help)   help_msg;;
    *)           LOGFILE=$1; shift;;
  esac
done

if [[ -z $LOGFILE ]]; then
  err_msg "Usage: tlog TARGET [OPTIONS]"
elif [[ $APPEND -eq 1 ]]; then
  tee >(sed 's/\x1b\[[0-9;]*[mK]//g' >> "$LOGFILE")
else
  tee >(sed 's/\x1b\[[0-9;]*[mK]//g' > "$LOGFILE")
fi