Show pageBack to top This page is read only. You can view the source, but not change it. Ask your administrator if you think this is wrong. ====== Find ====== ===== snippets ===== <code bash> # find Syncthing conflicts find ~ -name "*.sync-conflict-*" # delete files with modification date older than specified date find . \! -newermt "2020-01-01" -delete </code> ===== Syntax ===== ==== Negation ==== <code bash>find . \! -name "something" # or: find . -not -name "something" </code> ===== fd (fdfind) ===== [[https://github.com/sharkdp/fd|fdfind]] is an alternative to the default ''find'' tool. It's faster and more user friendly. Package name: ''fd-find'' (Fedora) Last modified: 2024-07-05 14:31