rwxrob-dot/scripts/gotestoutput
Rob Muhlestein 2ea0289e9f Rebase
2022-02-09 02:29:05 -05:00

8 lines
125 B
Bash
Executable File

#!/usr/bin/env bash
while IFS= read -r line;do
line="${line#$'\t'}"
line="${line//$'\t'/ }"
echo " // ${line}"
done