mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-29 23:24:55 +02:00
mv: add Italian translation.
fixed typos
This commit is contained in:
parent
fa3b6d6e67
commit
d78f25a950
1 changed files with 23 additions and 0 deletions
23
pages.it/common/mv.md
Normal file
23
pages.it/common/mv.md
Normal file
|
@ -0,0 +1,23 @@
|
|||
# mv
|
||||
|
||||
> Sposta o rinomina file e directory.
|
||||
|
||||
- Sposta file:
|
||||
|
||||
`mv {{sorgente}} {{destinazione}}`
|
||||
|
||||
- Sposta file senza chiedere conferma prima di sovrascrivere file esistenti:
|
||||
|
||||
`mv -f {{sorgente}} {{destinazione}}`
|
||||
|
||||
- Sposta file interattivamente, chiedendo conferma prima di sovrascrivere file esistenti:
|
||||
|
||||
`mv -i {{sorgente}} {{destinazione}}`
|
||||
|
||||
- Sposta file senza sovrascrivere file esistenti:
|
||||
|
||||
`mv -n {{sorgente}} {{destinazione}}`
|
||||
|
||||
- Sposta file in modità verbosa, mostrando a schermo ogni file che viene spostato:
|
||||
|
||||
`mv -v {{sorgente}} {{destinazione}}`
|
Loading…
Add table
Reference in a new issue