Search for a string of characters in files of a specific type
If we want to find specific text, e.g. “Ania” only in PHP files: find . -name “*.php” -print0 | xargs […]
Search for a string of characters in files of a specific type Read Post »
If we want to find specific text, e.g. “Ania” only in PHP files: find . -name “*.php” -print0 | xargs […]
Search for a string of characters in files of a specific type Read Post »
If we want to delete, for example, only *.js files in the given directory and subdirectories: find . -name “*.js”