Linux中创建目录及文件权限

  • Post author:
  • Post category:linux




实验目的

理解shell程序的设计方法

掌握shell程序编辑、运行、调试方法与过程



实验内容

shell简单编程



实验过程

要求:

1.记录实验过程,对关键过程进行文字说明并附上操作截屏。

2.逻辑清晰、排版美观。

编写shell脚本,实现功能:在/tmp目录下创建test目录(目录文件权限为:所有者可读、可写、可执行;所在组可读、可执行;其他用户可读),并在该目录下再建立3个目录,分别为dir1~dir3(目录文件权限为:所有者可读、可写、可执行;所在组可读、可写;其他用户可读),以及2个普通文件,分别为file1~file2(普通文件权限为:所有者可读、可写;所在组可读;其他用户可读)。

程序代码:

[c@localhost ~]$ mkdir /tmp/test
[c@localhost ~]$ cd /tmp
[c@localhost tmp]$ chmod 751 test
[c@localhost tmp]$ cd test
[c@localhost test]$ mkdir dir1 dir2 dir3
[c@localhost test]$ ls
dir1  dir2  dir3
[c@localhost test]$ chmod 764 dir1 dir2 dir3
[c@localhost test]$ touch file1 file2
[c@localhost test]$ ls
dir1  dir2  dir3  file1  file2
[c@localhost test]$ chmod 644 file1 file2
[c@localhost test]$ cd
[c@localhost ~]$ ls -l /tmp/* 

运行结果(列出/tmp目录及其子目录下的所有文件内容的详细信息):

在这里插入图片描述



版权声明:本文为qq_45828598原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。