10 lines
134 B
Plaintext
10 lines
134 B
Plaintext
|
#!/usr/bin/env bash
|
||
|
|
||
|
if [ -z "$@" ]; then
|
||
|
while read str; do
|
||
|
tamarin_log ERROR "${str}"
|
||
|
done
|
||
|
else
|
||
|
tamarin_log ERROR "$@"
|
||
|
fi
|