10 lines
138 B
Bash
Executable File
10 lines
138 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
if [ -z "$@" ]; then
|
|
while read str; do
|
|
tamarin_log SUCCESS "${str}"
|
|
done
|
|
else
|
|
tamarin_log SUCCESS "$@"
|
|
fi
|