forked from tldr-pages/tldr
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
7z, ab, ack: update Italian translation
- Loading branch information
1 parent
ad9f6c6
commit d028ac1
Showing
3 changed files
with
35 additions
and
10 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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 |
---|---|---|
@@ -1,20 +1,37 @@ | ||
# ack | ||
|
||
> Un tool di ricerca simile a `grep`, ottimizzato per programmatori. | ||
> Vedi anche: `rg`, che è molto più veloce. | ||
> Maggiori informazioni: <https://beyondgrep.com/documentation/>. | ||
- Trova file contenenti "foo": | ||
- Cerca ricorsivamente file contenenti una stringa o un'espressione regolare nella cartella corrente: | ||
|
||
`ack {{foo}}` | ||
`ack "{{pattern_di_ricerca}}"` | ||
|
||
- Trova file Ruby contenenti una specifica parola chiave: | ||
- Cerca un pattern in modalità case-insensitive: | ||
|
||
`ack --ruby {{each_with_object}}` | ||
`ack --ignore-case "{{pattern_di_ricerca}}"` | ||
|
||
- Conta il numero di file contenenti "foo": | ||
- Cerca righe di testo contenenti un pattern, mostrando solo il testo corrispondente e non il resto della riga: | ||
|
||
`ack -ch {{foo}}` | ||
`ack -o "{{pattern_di_ricerca}}"` | ||
|
||
- Mostra i nomi dei file contenenti "foo" insieme al numero di occorrenze del termine all'interno di essi: | ||
- Limita la ricerca ai file di un tipo specifico: | ||
|
||
`ack -cl {{foo}}` | ||
`ack --type={{ruby}} "{{pattern_di_ricerca}}` | ||
|
||
- Non cercare nei file di un tipo specifico: | ||
|
||
`ack --type=no{{ruby}} "{{pattern_di_ricerca}}` | ||
|
||
- Conta il numero totale di corrispondenze trovate: | ||
|
||
`ack --count --no-filename "{{pattern_di_ricerca}}"` | ||
|
||
- Mostra i nomi dei file e il numero di corrispondenze per ogni singolo file: | ||
|
||
`ack --count --files-with-matches "{{pattern_di_ricerca}}"` | ||
|
||
- Mostra la lista di tutti i valori che possono essere usati con `--type`: | ||
|
||
`ack --help-types` |