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/common/bin/linewise

11 lines
151 B
Plaintext
Raw Normal View History

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