| Funzione del comando | MS-DOS | Linux | Esempi base di Linux |
|
Copiare un file |
copy | cp | cp questofile.txt /home/questadirectory |
| Spostare un file | move | mv | mv questo file.txt /home/questadirectory |
| Elencare file | dir | ls | ls |
| Cancellare una schermata | cls | clear | clear |
| Chiudere una shell | exit | exit | exit |
| Visualizzare o impostare la data | date | date | date |
| Cancellare file | del | rm | rm questofile.txt |
| Copiare l'output sullo schermo | echo | echo | echo questo messaggio |
| Modificare un file con un editor di testi semplice | edit | pico/mcedit |
pico questofile.txt mcedit questofile.txt |