案例:
请用一条命令完成目录创建/hello/world/test
解答:
mkdir -p /hello/world/test
-p 递归创建目录,没有子目录创建。
案例:
打印hello/目录的结构
[root@hello110 ~]# tree hello/
-bash: tree: command not found
发现tree命令找不到,原因:没有安装扩展包
使用yum安装,命令如下:
yum install tree -y 。
-y:直接安装,不用确认了
安装成功后
[root@hello110 ~]# tree hello/
hello/
└── world
└── test
2 directories, 0 files
[root@hello110 ~]#
-------------
更多的Java,Angular,Android,大数据,J2EE,Python,数据库,Linux,Java架构师,:
http://www.cnblogs.com/zengmiaogen/p/7083694.html