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

8 lines
133 B
Bash
Executable File

#!/usr/bin/env bash
while IFS= read -r line; do
id=${line%% *}
name=${line#* }
printf "id: %s\nname: %s\n" "$id" "$name"
done