Basically I'm wondering why this doesn't output anything:
tail --follow=name file.txt | grep something | grep something_else
You can assume that it should produce output I have run another line to confirm
cat file.txt | grep something | grep something_…
I want to grep the adb logcat & write the output to a text file.
If I just do
./adb logcat > std.txt
it writes the entire log to the text file & If I do
./adb logcat | grep …
I have a bunch of folders and subfolders. Each one contains, amongst other things, a text file called index.yml with useful data. I want to search through all of the different index.yml files to find instances of a …