Skip to content

Instantly share code, notes, and snippets.

View franco999's full-sized avatar
💻
I may be slow to respond.

Franco franco999

💻
I may be slow to respond.
View GitHub Profile
#!/bin/bash
# Downloads all public traces on OpenStreetMap for a given user.
# This requires gunzip and bzip2 to extract the compressed traces.
# Also, wget to retrieve the traces from OSM.
#
# Arguments.
# 1) Username. If the username has spaces, you should provide the name between quotes.
#
# Version: 2024-05-26
@turicas
turicas / mdb2sql.sh
Created May 4, 2012 07:29
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