- From: Gérard Talbot <css21testsuite@gtalbot.org>
- Date: Sun, 25 May 2014 12:57:11 -0400
- To: Public CSS Test suite mailing list <public-css-testsuite@w3.org>
Hello, I made a small mistake in my last email. I'm correcting this here and now. ----------- How to find and list test(s) that have(has) a particular string of characters (eg itchy) inside the contributors' folder? Do in a terminal /contributors$ grep -l -r "itchy" * or /contributors$ grep --files-with-match --recursive "itchy" * ----------- How to find and list test(s) whose base filename have(has) a particular string of characters (eg scratchy) inside the contributors' folder? Do in a terminal anywhere inside the base filename: /contributors$ find -name "*scratchy*" at the start of the base filename: /contributors$ find -name "scratchy*" at the end of the base filename: /contributors$ find -name "*scratchy.html" The search is by default recursive meaning that the search will be applied to folder, subfolders and descendant files. ----------- Gérard -- Web authors' contributions to CSS 2.1 test suite http://www.gtalbot.org/BrowserBugsSection/css21testsuite/web-authors-contributions-css21-testsuite.html CSS 2.1 Test suite RC6, March 23rd 2011 http://test.csswg.org/suites/css2.1/20110323/html4/toc.html
Received on Sunday, 25 May 2014 16:57:50 UTC