Skip to content

Instantly share code, notes, and snippets.

View marvinrabe's full-sized avatar

Marvin Rabe marvinrabe

View GitHub Profile
@marvinrabe
marvinrabe / Copy as Markdown
Last active June 1, 2016 11:16 — forked from jakob-stoeck/Copy as textile
Copies SequelPro results as a Markdown table to use it in markdown-supported systems.
#!/usr/bin/php
<?php
function parseInput() {
$in = fopen('php://stdin', 'r');
$result = array();
while($line = fgetcsv($in, 0, "\t")) {
$result[] = $line;
}
fclose($in);