Skip to content

Instantly share code, notes, and snippets.

View jlengstorf's full-sized avatar
💭
partyin

Jason Lengstorf jlengstorf

💭
partyin
View GitHub Profile
@jlengstorf
jlengstorf / gist:3889744
Created October 14, 2012 20:36
Search for all occurrences of a string, case-insenstive, within the current dir and its subdirs. Returns the file name & line number, plus the matched line
grep -rni "STRING" .
@jlengstorf
jlengstorf / gist:2898957
Last active October 5, 2015 23:57
Find all files over 10MB in size.
find / -mount -noleaf -type f -size +10000k -print0 | xargs -0 ls -lhSr | awk '{printf "%*s %s\n",7,$5":",$9}'
@jlengstorf
jlengstorf / gist:2864077
Created June 3, 2012 16:25
.htaccess commands to increase max upload file size.
php_value upload_max_filesize 20M
php_value post_max_size 20M