diff --git a/Migrating-from-MariaDB-(MySQL)-to-SQLite.md b/Migrating-from-MariaDB-(MySQL)-to-SQLite.md index 145770f..b72cc72 100644 --- a/Migrating-from-MariaDB-(MySQL)-to-SQLite.md +++ b/Migrating-from-MariaDB-(MySQL)-to-SQLite.md @@ -40,8 +40,8 @@ mysqldump \ --hex-blob \ --skip-quote-names \ | grep "^INSERT INTO" | grep -v "__diesel_schema_migrations" \ - | sed 's#\\"#"#g' \ - | sed -sE "s#,0x([^,]*)#,X'\L\1'#g" \ + | sed 's#\\"#"#gm' \ + | sed -sE "s#,0x([^,]*)#,X'\L\1'#gm" \ > mysql-to-sqlite.sql ```