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

11 lines
144 B
Plaintext
Raw Normal View History

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