#grep
4 posts tagged grep. Clear filter
-
How to Find An SQLite Database with React Native and the iPhone Simulator.
I spent a few hours digging around my file system using find and grep hunting for my SQLite database that the iPhone Simulator was using for my React Native project. And no luck. But I found a...
-
Using Grep To Find or Match All Links in an HTML Document
You can further reduce to just return the images by piping again. The -r flag is for a recursive directory scan.
-
Recursively Search Contents of a File with Grep
The -r flag is for recursive, meaning it will also look in sub directories. The -i flag is for case insensitivity, meaning WORD and word will both be found.
-
Namespacing in Rails
With namespace routes in Rails you can easily create a prefix for select resources. For instance, if you have an admin area or an account dashboard you can give logged in users access to methods...