发布网友 发布时间:2022-04-21 03:26
共3个回答
热心网友 时间:2022-05-25 22:07
Linux中创建文件夹可以用mkdir命令,这个命令有两个参数需要注意,一个是-m参数,-m参数可以指定要创建的文件夹的权限,这个权限设置可以无视默认权限,权限的参数和chmod命令的方法一样。
还有一个参数是-p参数,这个参数表示递归创建目录,比如说你要创建的上层目录中,有哪个目录是不存在的,就可以用这个参数,也就是说,这个参数可以同时创建多层目录,比如:
mkdir -p test1/test2/test3
热心网友 时间:2022-05-25 23:25
创建文件和文件夹
命令之:touch ; touch [tʌt] 触摸;接触;
作用:常用来创建空文件,如果文件存在,则修改这个文件的时间
语法:touch 文件名
[root@xuegod63 ~]# cd /opt/
[root@xuegod63 opt]# touch a.txt
[root@xuegod63 opt]# touch file1 file2
[root@xuegod63 opt]# touch file{6..20} #创建file6到file20的文件
[root@xuegod63 opt]# ls
a.txt file10 file12 file14 file16 file18 file2 file6 file8 rh
file1 file11 file13 file15 file17 file19 file20 file7 file9
[root@xuegod63 ~]# touch a.txt
[root@xuegod63 ~]# ll a.txt
-rw-r--r--. 1 root root 0 8月 10 21:13 a.txt #这个时间是文件的修改时间。
[root@xuegod63 ~]# stat a.txt #查看文件属性(其中包括文件时间属性)
文件:"a.txt"
大小:4 块:8 IO 块:4096 普通文件
设备:803h/2051d Inode:18217320 硬链接:1
权限:(0755/-rwxr-xr-x) Uid:( 0/ root) Gid:( 0/ root)
最近访问:2021-03-09 23:03:19.747577494 +0800
最近更改:2021-03-09 23:03:58.2162266 +0800
最近改动:2021-03-09 23:04:12.116010166 +0800
注:
访问时间:atime 查看内容 cat a.txt
修改时间:mtime 修改内容 vim a.txt
改变时间:ctime 文件属性,比如权限 change time。 chmod +w a.txt
[root@xuegod ~]# echo $LANG #查看当前语言设置
zh_CN.UTF-8
[root@xuegod ~]#.UTF-8 #切换为英文
[root@xuegod63 ~]# stat a.txt
[root@xuegod ~]#.UTF-8 #切换为中文
热心网友 时间:2022-05-26 01:00
mkdir xxx 创建文件夹xxx
mkdir a1 a2 a3 批量创建文件夹 a1、文件夹 a2、文件夹 a3
mkdir -p b1/b2/b3 连续创建文件夹 b1、文件夹 b2、文件夹 b3 Linux命令需求可以查询“Linux命令大全”。