Mercurial > hg > cc > cirrus_home
view bin/ff @ 138:9ea12f7b304b
just barely working
author | Henry S. Thompson <ht@inf.ed.ac.uk> |
---|---|
date | Fri, 23 Jul 2021 16:23:46 +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