日期:2014-05-16  浏览次数:20665 次

Linux 文件操作

创建文件夹:

mkdir test

mkdir -p test/test1

?

删除文件(夹):

rm test

rm -rf test

?

文件改名

mv test test1