💾 Archived View for espotiesfa.ddns.net › linux › fd.gmi captured on 2023-09-08 at 17:11:14. Gemini links have been rewritten to link to archived content

View Raw

More Information

⬅️ Previous capture (2022-06-03)

➡️ Next capture (2023-11-04)

-=-=-=-=-=-=-

 _____  _   _ _   _    ___     _                  
|  __ \| \ | | | | |  / / |   (_)                 
| |  \/|  \| | | | | / /| |    _ _ __  _   ___  __
| | __ | . ` | | | |/ / | |   | | '_ \| | | \ \/ /
| |_\ \| |\  | |_| / /  | |___| | | | | |_| |>  < 
 \____/\_| \_/\___/_/   \_____/_|_| |_|\__,_/_/\_\
                                                  
--------------------
 Ordre: fd (fdfind)
--------------------

En les distribucions derivades d'Ubuntu es diu fdfind (perquè hi ha

un altre programa que es diu fd).

Troba fitxers (a l'estil de find, però amb opcions més agradables).

$ fdfind glibc /

/usr/include/pnglibconf.h
/usr/include/hwloc/glibc-sched.h
/usr/include/libpng16/pnglibconf.h
/usr/share/aclocal/glibc21.m4
/usr/share/aclocal/glibc2.m4

Noteu que amb find, la sintaxi equivalent seria

find / -iname "*glibc*"

Admet expressions regulars (així ja teniu dos problemes ;-))

fdfind '^g[^/]c


 /

Podeu cercar fitxers amb una extensió determinada (per exemple

els fitxers que contenen "python" al nom i que es troben al directori

"Downloads")

fdfind -e pdf python Downloads

També podeu cercar un nom determinat

fdfind -g python3 /usr/bin

Més informació a

https://github.com/sharkdp/fd

Torna a linux

Torna a l'inici