-
-
Notifications
You must be signed in to change notification settings - Fork 4.7k
find: add German translation #16900
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
sebastiaanspeck
merged 11 commits into
tldr-pages:main
from
renehamburg:add-find-page-de
Jul 8, 2025
Merged
find: add German translation #16900
Changes from 8 commits
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
812b4fd
de: add find command page
renehamburg aa47c1a
find.md aktualisieren
renehamburg 52a392d
Merge branch 'main' into add-find-page-de
renehamburg 57179af
Merge branch 'main' into add-find-page-de
sebastiaanspeck 3de7280
Merge branch 'main' into add-find-page-de
renehamburg 1e90d68
Merge branch 'main' into add-find-page-de
renehamburg 8070c16
Merge branch 'main' into add-find-page-de
renehamburg 5e091fc
Merge branch 'main' into add-find-page-de
renehamburg cca76c9
find: revise german translation
renehamburg 5d5e44d
find: revise german translation (standardize wording)
renehamburg fc39c93
Merge branch 'main' into add-find-page-de
renehamburg File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
# find | ||
|
||
> Dateien oder Verzeichnisse in einem Verzeichnisbaum rekursiv suchen. | ||
> Weitere Informationen: <https://manned.org/find>. | ||
|
||
- Dateien nach Erweiterung suchen: | ||
|
||
`find {{root_path}} -name '{{*.ext}}'` | ||
|
||
- Sucht nach Dateien, die mehreren Pfad-/Namensmustern entsprechen: | ||
|
||
`find {{root_path}} -path '{{*/path/*/*.ext}}' -or -name '{{*pattern*}}'` | ||
|
||
- Sucht nach Verzeichnissen, die einem bestimmten Namen entsprechen, ohne Berücksichtigung der Groß- und Kleinschreibung: | ||
|
||
`find {{root_path}} -type d -iname '{{*lib*}}'` | ||
|
||
- Sucht nach Dateien, die einem bestimmten Muster entsprechen, unter Ausschluss bestimmter Pfade: | ||
|
||
`find {{root_path}} -name '{{*.py}}' -not -path '{{*/site-packages/*}}'` | ||
|
||
- Sucht nach Dateien, die einem bestimmten Größenbereich entsprechen, wobei die rekursive Tiefe auf "1" begrenzt wird: | ||
|
||
`find {{root_path}} -maxdepth 1 -size {{+500k}} -size {{-10M}}` | ||
|
||
- Führ für jede Datei einen Befehl aus (verwende `{}` innerhalb des Befehls, um auf den Dateinamen zuzugreifen): | ||
|
||
`find {{root_path}} -name '{{*.ext}}' -exec {{wc -l}} {} \;` | ||
|
||
- Findet alle heute geänderten Dateien und übergibt die Ergebnisse als Argumente an einen einzelnen Befehl: | ||
|
||
`find {{root_path}} -daystart -mtime {{-1}} -exec {{tar -cvf archive.tar}} {} \+` | ||
|
||
- Sucht nach leeren Dateien oder Verzeichnissen und löschen Sie diese ausführlich: | ||
|
||
`find {{root_path}} -type {{f|d}} -empty -delete -print` |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.