Mercurial > hg > cc > cirrus_home
view bin/ff @ 201:93dc3b9f70a6
maybe got -m working using --array
| author | Henry S. Thompson <ht@inf.ed.ac.uk> |
|---|---|
| date | Thu, 26 Mar 2026 17:27:21 +0000 |
| 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
