| Windows command |
Linux command |
Usage | Windows Example |
Linux Example |
|---|---|---|---|---|
| set | export | Set environment variable | set GLIB=c:\glib | export GLIB=\usr\local\lib |
| fdisk | fdisk, parted, sfdisk | Partition editor | - | - |
| copy | cp | Copy file(s) | copy abc.txt c:\temp | cp abc.txt \temp |
| md | mkdir | Create directory | md TEMP | mkdirR TEMP |
| del | rm | Delete file/directory | del *.tmp | rm *.tmp |
| ren | rename | Rename file | ren a.txt b.txt | rename a.txt b.txt |