This repository has been archived on 2024-03-28. You can view files and clone it, but cannot push or open issues or pull requests.
dotfiles/bin/linewise
Daniel Flanagan 76594427ff Pipelines!
2019-12-12 13:00:03 -06:00

11 lines
144 B
Bash
Executable file

#!/usr/bin/env bash
if [[ ! -z "${1+x}" ]]; then
while read r; do
<<< "${r}" "$1"
done
else
echo "No reader program provided."
exit 1
fi