Re: find usage

Página superior
Adjuntos:
Obtener este mensaje como un correo
+ (text/plain)
+ (text/html)
+ (text/plain)
Eliminar este mensaje
Responder a este mensaje
Autor: Brian Cluff via PLUG-discuss
Fecha:  
A: Michael via PLUG-discuss
Cc: Brian Cluff
Asunto: Re: find usage
Try:
find . -name Marriage
or
find . | grep Marriage

The first one will only match fines that are exactly names "Marriage"
while the second one will match any files with "Marriage" as part of the
name.  Both versions in this case are care sensitive.

See the find man page for for variations on these.  Look for the second
about expressions.

Brian Cluff

On 6/27/22 11:32, Michael via PLUG-discuss wrote:
> I need to find out where I hopefully moved a file.
> So I'm opening the directory I'm searching in a terminal and type:
>
> find Marriage .
>
> but it just gives me a listing of what is below '.' (I guess). What am
> I doing wrong?
>
> --
> :-)~MIKE~(-:
>
> ---------------------------------------------------
> PLUG-discuss mailing list -
> To subscribe, unsubscribe, or to change your mail settings:
> https://lists.phxlinux.org/mailman/listinfo/plug-discuss

---------------------------------------------------
PLUG-discuss mailing list -
To subscribe, unsubscribe, or to change your mail settings:
https://lists.phxlinux.org/mailman/listinfo/plug-discuss