find_erb.sh
· 70 B · Bash
Brut
#!/bin/sh
find . -name "*.erb" |rg --pcre2 '^(?!.*(html).*$)([^\n]*)'
| 1 | #!/bin/sh |
| 2 | |
| 3 | find . -name "*.erb" |rg --pcre2 '^(?!.*(html).*$)([^\n]*)' |