Linux 中基本的文件和目录管理命令,包括创建目录/文件、复制删除等操作
[root@svr5 ~]# ls -lh ls-man.txt
-rw-r--r-- 1 root root 7.4K 09-25 17:58 ls-man.txt
[root@svr5 ~]# touch ls-man.txt //更新文件的时间标记 [root@svr5 ~]# ls -lh ls-man.txt
-rw-r--r-- 1 root root 7.4K 09-26 10:36 ls-man.txt
指定不存在的文件作为touch的操作对象时,实际相当于创建新文件。此操作通常用于测试,新建文件的大小为0、内容为空: [root@svr5 ~]# touch file1.txt //创建一个文件
[root@svr5 ~]# touch file2.doc file3.jpg //同时创建多个文件 [root@svr5 ~]# ls -lh file*
-rw-r--r-- 1 root root 0 09-26 10:39 file1.txt
-rw-r--r-- 1 root root 0 09-26 10:39 file2.doc
-rw-r--r-- 1 root root 0 09-26 10:39 file3.jpg
3)使用ln创建快捷方式(符号链接)
为版本文件redhat-release建一个符号链接(-s选项),确认链接文件及使用效果: [root@svr5 ~]# ln -s /etc/redhat-release /etc/version
[root@svr5 ~]# ls -lh /etc/version //查看新建链接文件的属性
lrwxrwxrwx 1 root root 19 09-26 10:45 /etc/version -> /etc/redhat-release [root@svr5 ~]# cat /etc/version //访问链接文件与访问源文件等效 Red Hat Enterprise Linux Server release 5.9 (Tikanga)