11 lines
151 B
Bash
Executable file
11 lines
151 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
if [[ -n "${1+x}" ]]; then
|
|
while read -r line; do
|
|
<<< "${line}" "$@"
|
|
done
|
|
else
|
|
echo "No reader program provided."
|
|
exit 1
|
|
fi
|