Mercurial > hg > cc > cirrus_home
view bin/ff @ 202:491b6d11dd14
works now with somewhat redundant --array=a-b and runme.sh -m a b
| author | Henry S. Thompson <ht@inf.ed.ac.uk> |
|---|---|
| date | Mon, 20 Apr 2026 18:22:38 +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
