#!/bin/sh # # unfold-sql-inserts - distribute INSERTs over multiple lines in MySQL dumps # # $Id$ # quick hack - not foolproof! perl -pe '/^INSERT/ and s#[(,]#$&\n#g' "$@"