The mkdir command
mkdir [-m=mode] [-p] [-v] [-Z=context] directory [directory...]Examples:
[root@academy tmp]# ls
ks-script-ggLlAt yum.log
[root@academy tmp]# mkdir myfiles
[root@academy tmp]# ls -l
total 4
-rwx------. 1 root root 836 Dec 13 14:30 ks-script-ggLlAt
drwxr-xr-x. 2 root root 6 Dec 22 22:31 myfiles
-rw-------. 1 root root 0 Dec 13 14:23 yum.log
[root@academy tmp]#[root@academy tmp]# mkdir ~/myfiles
[root@academy tmp]# ls ~
anaconda-ks.cfg myfiles
[root@academy tmp]#Last updated