Mercurial > hg > cc > cirrus_home
view bin/ff @ 203:2aa9db279d56
--array + -m now working
| author | Henry S. Thompson <ht@inf.ed.ac.uk> |
|---|---|
| date | Wed, 22 Apr 2026 18:50:07 +0100 |
| parents | ecdbaa11b88e |
| children |
line wrap: on
line source
#!/bin/sh # find any match from here if [ "$1" = "-y" ] then shift yy= else yy="-not ( -path ./Yesterday -prune )" fi ff=$1 shift find . $yy \( \( -iname \*$ff\* \) -o \( -iname .\*$ff\* \) \) "$@" -print
