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