mirror of
https://github.com/kneutron/ansitest.git
synced 2025-01-16 04:42:55 +08:00
25 lines
446 B
Bash
25 lines
446 B
Bash
#!/bin/bash
|
|
# Echo something to current console AND log
|
|
# Can also handle piped input ( cmd |logecho )
|
|
# Warning: Has trouble echoing '*' even when quoted.
|
|
function logecho () {
|
|
args=$@
|
|
|
|
if [ -z "$args" ]; then
|
|
args='tmp'
|
|
|
|
while [ 1 ]; do
|
|
read -e -t2 args
|
|
|
|
if [ -n "$args" ]; then
|
|
echo $args |tee -a $logfile;
|
|
else
|
|
break;
|
|
fi
|
|
done
|
|
|
|
else
|
|
echo $args |tee -a $logfile;
|
|
fi
|
|
} # END FUNC
|