Help for this page

Select Code to Download


  1. or download this
        grep -hc pattern files | perl -lpe '${_{_}}+=+${_}}{${_}+=+${_{_}}'
  2. or download this
        cat files | grep -c pattern
  3. or download this
        cat files | grep -hc pattern
        grep -hc pattern files
    
  4. or download this
        cat file1 file2 ... | grep -hc pattern
  5. or download this
        cat *.h | grep -hc define
        grep -hc define *.h