Timeline for Find files by the length of filename
Current License: CC BY-SA 3.0
4 events
| when toggle format | what | by | license | comment | |
|---|---|---|---|---|---|
| Sep 2, 2023 at 7:56 | comment | added | Stéphane Chazelas | find . -type f | grep -P '/.{3}$' also matches on ./x/y | |
| Sep 2, 2023 at 7:56 | comment | added | Stéphane Chazelas | {x,y} is also in standard extended regexps (as in grep -E), it's not perl (let alone PCRE) specific. Standard BREs also have \{x,y\} (added there before {x,y} was added in EREs) | |
| Oct 1, 2013 at 4:20 | history | edited | terdon♦ | CC BY-SA 3.0 | added 20 characters in body |
| Oct 1, 2013 at 4:14 | history | answered | terdon♦ | CC BY-SA 3.0 |