Add files via upload

This commit is contained in:
kneutron 2022-09-07 10:41:02 -05:00 committed by GitHub
parent 0eda4a2b0e
commit 01514c1d44
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

24
logecho.mrg Normal file
View File

@ -0,0 +1,24 @@
#!/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