06/06/2013 Par PJ Michel Dansmysql, pense-bête Splitter un dump mysql avec Bash, en 1 dump par table #!/bin/bash file=$1 # the input file directory="$file-splitted" # the output directory output="$directory/header" # the first file containing the header GREP="DROP TABLE" # what we are looking for mkdir $directory #… Read More