Skip to content

Instantly share code, notes, and snippets.

@deathcult
deathcult / mark
Last active December 28, 2015 13:59
Mark - A Beautiful Life !(2013-11-17)
Mark ! -- *A Beautiful Life !*
===
*2013-11-17*
===
@deathcult
deathcult / gist:7486921
Last active December 28, 2015 10:29
网易首页有多少链接?
## sed reg
curl -s www.163.com | sed -n 's/.*\(<a[^>]*>\).*/\1/p'
#!/bin/sh
## Get Database Data Dictionary
DB=database
DSN="mysql -uuser -ppw -hhost --default-character-set=utf8 $DB"
i=0
for TABLE in `$DSN -e 'show tables'`;do
let "i++"
SQL="show full columns from "$TABLE