Adsense
Popular Posts
- MySQL workbench -"Could not decrypt password cache"
- mod_auth_cas.so error: undefined symbol: SSL_connect
- JavaScript, remove trailing insignificant zeros after toFixed function
- Set Windows path command line
- JavaScript Arrays and Associate Arrays
- Design date and signature box in Latex
- Install APXS in Redhat Linux
- super(props) in React
- jQuery, toggle the display
- PHP function for input sanitizing
Showing posts with label Unix. Show all posts
Showing posts with label Unix. Show all posts
Thursday, June 5, 2014
Unix - find a string in any files under current directory and its sub-directories
To find a string in any files under current directory and its sub-directories, for example, string "Logout"
find . -type f -exec grep -l "Logout" {} \;
Subscribe to:
Posts (Atom)