20061117

Search files for spesific string

grep -rH [string] [dir_to_search]

eg: grep -rH WebKitHistoryAgeInDaysLimit ~/Library

1 comment:

  1. how about this ?

    find ~/Library -exec grep "WebKitHistoryAgeInDaysLimit" '{}' \; -print

    ReplyDelete