Make Directory.
Als het goed is heb je al gelezen dat je met LS de inhoud van een directory kan zien.
root@Zoekutuit ~ $ ls -l total 4 drwxrwxr-x 2 root root 4096 Jan 1 1970 python_games root@Zoekutuit ~ $ _
Met MKDIR kan je zelf een directory maken.
root@Zoekutuit ~ $ mkdir testmap root@Zoekutuit ~ $ ls -l total 4 drwxrwxr-x 2 root root 4096 Jan 1 1970 python_games drwxr-xr-x 2 root root 4096 Mar 14 09:26 testmap root@Zoekutuit ~ $ _
Je kan natuurlijk ook een map aanmaken in een andere folder met:
root@Zoekutuit ~ $ mkdir /testmap/map1 root@Zoekutuit ~ $ _