nix/modules/home-manager/scripts/common/bin/linewise
2023-10-05 13:43:28 -05:00

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