当我们工作的需要,建立一个目录的时候,我们可以使用“mkdir”命令来建立一个目录,如下所示:
[root@Linux ~]# mkdir myfile
[root@Linux ~]# ll
总计 60
-rw------- 1 root root 865 03-15 04:12 anaconda-ks.cfg
drwxr-xr-x 2 root root 4096 03-14 20:34 Desktop
-rw-r--r-- 1 root root 27964 03-15 04:12 install.log
-rw-r--r-- 1 root root 5069 03-15 04:11 install.log.syslog
drwxr-xr-x 2 root root 4096 03-19 12:36 myfile
我们先使用“mkdir myfile”建立了一个名字叫“myfile”的目录,然后我们使用命令验证一下,发现我们已经建立了这个文件夹,可以根据颜色来判断是一个文件夹。
Comments | NOTHING