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
2019-12-12 13:17:20 -06:00

11 lines
144 B
Bash
Executable file

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