Skip to content

Commit 8ab111f

Browse files
Update README.md
Changed command usage to ensure perl is used.
1 parent bbc307e commit 8ab111f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,13 @@ Best used when put in the user's home dir. Example:
88
```
99
cp sqlite-to-mariadb.pl ~
1010
chmod +x ~/sqlite-to-mariadb.pl
11-
~/sqlite-to-mariadb.pl MyDBName.sqlite.sql > MyDBName.mariadb.sql
11+
perl sqlite-to-mariadb.pl MyDBName.sqlite.sql > MyDBName.mariadb.sql
1212
```
1313

1414
Example scenario:
1515
```
1616
sqlite3 YourDBName.sqlitedb .dump > YourDBName.sqlite.sql
17-
~/sqlite-to-mariadb.pl YourDBName.sqlite.sql > YourDBName.mariadb.sql
17+
perl sqlite-to-mariadb.pl YourDBName.sqlite.sql > YourDBName.mariadb.sql
1818
mysql -uUSER -pPASSWORD YourDBName < YourDBName.mariadb.sql
1919
```
2020

0 commit comments

Comments
 (0)