mattkenefick


Member since 05/19/2008

3 snippets

4570 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 682 posted 14 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 1061 posted 15 years ago by mattkenefick
Unzip files with PHP.
1 1035 posted 16 years ago by mattkenefick
« Prev 1 Next »