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.htmlReceived on Sunday, 25 May 2014 16:57:50 UTC
This archive was generated by hypermail 2.4.0 : Friday, 20 January 2023 19:58:20 UTC