Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/scripts/tsv2tablerow
blob: d8b378d303919acf7fc9e59062a2e5ce5e3576eb (plain)
1
2
3
4
5
6
7
8
#!/bin/oksh

IFS="\n"
while read line; do
echo -n "_TABLE_ROW("
	echo -n "$line" | tr -s "\\t" ","
	echo ")"
done < "$1"