rwxrob-dot/scripts/gotestoutput

8 lines
125 B
Plaintext
Raw Normal View History

2022-02-09 07:29:05 +00:00
#!/usr/bin/env bash
while IFS= read -r line;do
line="${line#$'\t'}"
line="${line//$'\t'/ }"
echo " // ${line}"
done