mirror of
https://github.com/tldr-pages/tldr.git
synced 2026-08-30 17:33:50 +08:00
^: add Italian translation (#20591)
This commit is contained in:
committed by
GitHub
parent
2eddb4156e
commit
a3b9ebf09e
@@ -0,0 +1,26 @@
|
||||
# ^
|
||||
|
||||
> Comando integrato di Bash per sostituire rapidamente una stringa nel comando precedente ed eseguirlo.
|
||||
> Equivalente a `!!:s^stringa1^stringa2`.
|
||||
> Vedi anche: `!`.
|
||||
> Maggiori informazioni: <https://gnu.org/software/bash/manual/bash.html#Event-Designators>.
|
||||
|
||||
- Esegue il comando precedente sostituendo `stringa1` con `stringa2`:
|
||||
|
||||
`^{{stringa1}}^{{stringa2}}`
|
||||
|
||||
- Rimuove `stringa1` dal comando precedente:
|
||||
|
||||
`^{{stringa1}}^`
|
||||
|
||||
- Sostituisce `stringa1` con `stringa2` nel comando precedente e aggiunge `stringa3` alla fine:
|
||||
|
||||
`^{{stringa1}}^{{stringa2}}^{{stringa3}}`
|
||||
|
||||
- Sostituisce tutte le occorrenze di `stringa1`:
|
||||
|
||||
`^{{stringa1}}^{{stringa2}}^:g&`
|
||||
|
||||
- Stampa il comando sostituito senza eseguirlo:
|
||||
|
||||
`^{{stringa1}}^{{stringa2}}^:p`
|
||||
Reference in New Issue
Block a user