Skip to content

Instantly share code, notes, and snippets.

View parsapoorsh's full-sized avatar
🍊
Hey there! I am using GitHub

Parsa Poorshikhian parsapoorsh

🍊
Hey there! I am using GitHub
View GitHub Profile
@parsapoorsh
parsapoorsh / mdb2sql.sh
Last active June 1, 2022 12:32 — forked from turicas/mdb2sql.sh
Convert a MDB (Access) file to SQL
#!/bin/bash
# Convert a MDB file (Access) to SQL
# Needs mdbtools[http://mdbtools.sourceforge.net/]
# run 'aptitude install mdbtools' on Debian/Ubuntu
# Created by Álvaro Justen <https://github.com/turicas>
# License: GPLv2
mdb=$1
sql=$2