mattkenefick


Member since 05/19/2008

3 snippets

3092 profile views

1 Comment(s) Posted

View their favorites

Profile

Achievement

first submission:submitting first snipplet

mattkenefick's Recent SnippetsTagged files



« Prev 1 Next »
Returns an array of files that match a search term in a certain directory.
1 515 posted 13 years ago by mattkenefick
find . | xargs grep 'string' -sl The -s is for summary and won't display warning messages such as grep: ./directory-name: Is a directory The -l is for list, so we get just the filename and not all instances of the match displayed in the results...
2 816 posted 14 years ago by mattkenefick
Unzip files with PHP.
1 807 posted 15 years ago by mattkenefick
« Prev 1 Next »