Skip to content

Instantly share code, notes, and snippets.

View dhowden's full-sized avatar

David Howden dhowden

View GitHub Profile
@dhowden
dhowden / lmate
Created August 29, 2012 12:58
Script to convert filename.ext:line into correct command format for `mate`
#!/bin/bash
IFS=:
ary=($1)
mate ${ary[0]} -l ${ary[1]}