标签:linux 实验室 在线
创建文件夹:-mkdir
<span style="font-size:18px;">tc@box:~$ mkdir testdir # 创建testdir文件夹 tc@box:~$ ls # ls命令可以看到你所创建的文件夹</span>
<span style="font-size:18px;">tc@box:~$ rmdir testdir # 删除testdir文件夹,该命令只能删除空文件夹 tc@box:~$ ls # ls命令看不到testdir文件夹</span>
<span style="font-size:18px;">tc@box:~$ mkdir testdir tc@box:~$ cd testdir tc@box:~/testdir$ touch testfile # 使用touch命令创建文件testfile tc@box:~/testdir$ cat testfile # 查看文件内容为空</span>
复制文件及目录:-cp
tc@box:~/testdir$ echo "000" > testfile # 添加内容到文件testfile tc@box:~/testdir$ cp testfile testfilecopy # 复制文件testfile到testfilecopy tc@box:~/testdir$ diff testfile testfilecopy # 查看文件testfile和testfilecopy tc@box:~/testdir$ cd .. # 到上层目录 tc@box:~$ cp -r testdir testdircopy # 拷贝文件夹及文件夹内容
tc@box:~$ cd testdir tc@box:~/testdir$ ls -l # 查看文件夹下文件详细的属性,r表示读,w表示写,x表示执行 tc@box:~/testdir$ chmod a+w testfile # 为所有用户添加写属性 tc@box:~/testdir$ ls -l # 再次查看确认写属性已经添加到文件testfile
更改所有者:-chown
tc@box:~/testdir$ sudo chown root testfile # 修改文件所有者为root tc@box:~/testdir$ ls -l # 再次查看确认所有者已经修改
tc@box:~/testdir$ ln -s testfile testfilelink # 为文件testfile创建软链接testfilelink tc@box:~/testdir$ ls -l # 再次查看确认软链接已经创建
移动文件:-mv
tc@box:~/testdir$ mv testfile newtestfile # 将testfile文件改名为newtestfile tc@box:~/testdir$ ls -l # 查看确认文件已改名
删除文件:-rm
tc@box:~/testdir$ rm newtestfile # 删除newtestfile tc@box:~/testdir$ ls -l # 查看确认文件已被删除
(2)
(3)
尝试 “实验楼” 目录及文件操作 (2),布布扣,bubuko.com
标签:linux 实验室 在线
原文地址:http://blog.csdn.net/u013476464/article/details/32912225