第5章 文件与目录

1.ls命令

用于显示指定工作目录下的文件及属性信息
Linux系统中不同的颜色代表了不同的文件类型,如:
蓝色 目录 /etc
黑色 文件 /etc/passwd
浅蓝色 链接 /etc/grub2.cfg
红色 压缩包 boot.tar.gz
绿色 可执行文件 /etc/init.d/network
黑底黄字 设备文件 /dev/sda

Linux下用字符表示的文件类型 
-:普通文件 
d:目录文件 
l:链接文件 
b:块设备文件 
c:字符设备文件 
p:管道文件 

[root@dsrw ~]#  ls
公共  视频  文档  音乐  anaconda-ks.cfg
模板  图片  下载  桌面  initial-setup-ks.cfg

[root@dsrw ~]# ls -a
.     图片  anaconda-ks.cfg  .cache     .gnupg                .pki
..    文档  .bash_history    .config    .ICEauthority         .tcshrc
公共  下载  .bash_logout     .cshrc     initial-setup-ks.cfg  .viminfo
模板  音乐  .bash_profile    .dbus      .local
视频  桌面  .bashrc          .esd_auth  .mozilla

[root@dsrw ~]# ls -l
总用量 8
drwxr-xr-x. 2 root root    6 12月 14 21:59 公共
drwxr-xr-x. 2 root root    6 12月 14 21:59 模板
drwxr-xr-x. 2 root root    6 12月 14 21:59 视频
drwxr-xr-x. 2 root root    6 12月 14 21:59 图片
drwxr-xr-x. 2 root root    6 12月 14 21:59 文档
drwxr-xr-x. 2 root root  139 12月 26 10:31 下载
drwxr-xr-x. 2 root root    6 12月 14 21:59 音乐
drwxr-xr-x. 2 root root    6 12月 14 21:59 桌面
-rw-------. 1 root root 1382 12月 14 21:50 anaconda-ks.cfg
-rw-r--r--. 1 root root 1537 12月 14 21:54 initial-setup-ks.cfg

[root@dsrw ~]# ls /dev/tty*
/dev/tty    /dev/tty19  /dev/tty3   /dev/tty40  /dev/tty51  /dev/tty62
/dev/tty0   /dev/tty2   /dev/tty30  /dev/tty41  /dev/tty52  /dev/tty63

2.cd命令

用于切换当前的工作路径
[root@dsrw ~]# cd /etc/yum.repos.d
[root@dsrw yum.repos.d]# cd ..
[root@dsrw etc]# cd .
[root@dsrw etc]# cd -
/etc
[root@dsrw etc]# cd /
[root@dsrw /]# cd ~
[root@dsrw ~]# 

3.cp命令

用于复制文件或者目录
[root@dsrw ~]# cp anaconda-ks.cfg /home/dsrw
[root@dsrw ~]# cp -a anaconda-ks.cfg /home
[root@dsrw ~]# ls -l /home
总用量 4
-rw-------. 1 root root 1382 12月 14 21:50 anaconda-ks.cfg
drwx------. 3 dsrw dsrw  101 12月 27 19:35 dsrw
[root@dsrw ~]# ls -l /home/dsrw
总用量 4
-rw-------. 1 root root 1382 12月 27 19:35 anaconda-ks.cfg

4.mv命令

用于剪切或重命名文件
[root@dsrw ~]# mv /home/anaconda-ks.cfg /home/dsrw
[root@dsrw ~]# mv /home/dsrw/anaconda-ks.cfg /home/anaconda-ks.cfg.bak

5.pwd命令用于显示用户当前所处的工作目录
[root@dsrw ~]# pwd
/root

6.rm命令

用于删除文件或目录
[root@dsrw ~]# rm /home/anaconda-ks.cfg
rm:是否删除普通文件 '/home/anaconda-ks.cfg'?y
[root@dsrw ~]# rm -f  /home/anaconda-ks.cfg.bak
[root@dsrw ~]# rm -r /home/dsrwcom
rm:是否进入目录'/home/dsrwcom'? y
rm:是否删除普通文件 '/home/dsrwcom/anaconda-ks.cfg'?y
rm:是否删除普通文件 '/home/dsrwcom/initial-setup-ks.cfg'?y

7.mkdir命令

用于创建目录
[root@dsrw ~]# mkdir /home/dsrw.com

8.rmdir命令

用于删除空目录
[root@dsrw ~]# rmdir /home/dsrw.com

9.chgrp命令

用来改变文件或目录所属的用户组
[root@dsrw ~]# cat /etc/group
dsrw:x:1000:
[root@dsrw ~]# ls -l 
-rw-r--r--. 1 root root   20 12月 27 20:08 dsrw.txt
[root@dsrw ~]# chgrp dsrw dsrw.txt
[root@dsrw ~]# ls -l 
-rw-r--r--. 1 root dsrw   20 12月 27 20:08 dsrw.txt

10.chmod命令

用于设置文件的一般权限及特殊权限
[root@dsrw ~]# chmod 777 dsrw.txt
[root@dsrw ~]# ls -l 
[root@dsrw ~]# chmod 777 dsrw.txt
-rwxrwxrwx. 1 root dsrw   20 12月 27 20:08 dsrw.txt

11.chown命令

用于设置文件的所有者和所有组
[root@dsrw ~]# cat /etc/passwd
dsrw:x:1000:1000:dsrw:/home/dsrw:/bin/bash
[root@dsrw ~]# chown -R dsrw:dsrw dsrw.txt
[root@dsrw ~]# ls -l
-rwxrwxrwx. 1 dsrw dsrw   20 12月 27 20:08 dsrw.txt

12.find命令

用于按照指定条件来查找文件所对应的位置
[root@dsrw ~]# find dsrw.txt
dsrw.txt

13.ln命令

用于创建文件的软硬链接(如果不带-s参数,则默认创建硬链接)
[root@dsrw ~]# ln anaconda-ks.cfg dsrw.com
[root@dsrw ~]# ln -s anaconda-ks.cfg dsrw.cn
[root@dsrw ~]# ls -l
lrwxrwxrwx. 1 root root   15 12月 27 20:33 dsrw.cn -> anaconda-ks.cfg
-rw-------. 2 root root 1382 12月 14 21:50 dsrw.com

14.whereis 命令

查看命令在哪个位置
[root@dsrw ~]# whereis ifconfig
ifconfig: /usr/sbin/ifconfig /usr/share/man/man8/ifconfig.8.gz

15.which命令

用于按照指定名称快速搜索命令位置
[root@dsrw ~]# which ls
alias ls='ls --color=auto'
	/usr/bin/ls

16.file 命令

查看命令是什么类型的文件
[root@dsrw ~]# file /usr/sbin/ifconfig
/usr/sbin/ifconfig: ELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, for GNU/Linux 3.2.0, BuildID[sha1]=7ba046a8def234327c2cb583a99a78dc1b2c8745, stripped, too many notes (256)

17.touch命令

用于创建空白文件或设置文件的时间
[root@dsrw ~]# touch dsrw.txt
[root@dsrw ~]# stat dsrw.txt
  文件:dsrw.txt
  大小:0         	块:0          IO 块:4096   普通空文件
设备:fd00h/64768d	Inode:34755836    硬链接:1
权限:(0644/-rw-r--r--)  Uid:(    0/    root)   Gid:(    0/    root)
环境:unconfined_u:object_r:admin_home_t:s0
最近访问:2022-12-27 21:23:27.869512133 +0800
最近更改:2022-12-27 21:23:27.869512133 +0800
最近改动:2022-12-27 21:23:27.869512133 +0800
创建时间:-
[root@dsrw ~]# touch dsrw.txt
[root@dsrw ~]# stat dsrw.txt
  文件:dsrw.txt
  大小:0         	块:0          IO 块:4096   普通空文件
设备:fd00h/64768d	Inode:34755836    硬链接:1
权限:(0644/-rw-r--r--)  Uid:(    0/    root)   Gid:(    0/    root)
环境:unconfined_u:object_r:admin_home_t:s0
最近访问:2022-12-27 21:25:23.728517658 +0800
最近更改:2022-12-27 21:25:23.728517658 +0800
最近改动:2022-12-27 21:25:23.728517658 +0800

18.dd命令

用于按照指定大小的数据块个数来复制文件或转换文件(/dev/zero文件代表一个永远输出 0的设备文件,使用它作输入可以得到全为空的文件。)
[root@dsrw ~]# dd if=/dev/zero of=file count=1 bs=1024
记录了1+0 的读入
记录了1+0 的写出
1024 bytes (1.0 kB, 1.0 KiB) copied, 7.8705e-05 s, 13.0 MB/s
[root@dsrw ~]# ls -l
-rw-r--r--. 1 root root 1024 12月 27 21:30 file

19.rename命令

批量为文件改名
[root@dsrw ~]# rename --version
rename,来自 util-linux 2.32.1
[root@dsrw ~]# rename -v txt com.cn dsrw.txt
`dsrw.txt' -> `dsrw.com.cn'

[root@dsrw ~]# ls
linux.cn      linux.txt    linux.com  linux.com.cn
[root@dsrw ~]# rename linux dsrw linux.*
[root@dsrw ~]# ls
dsrw.cn  dsrw.txt  dsrw.com   dsrw.com.cn  

[root@dsrw ~]# ls
index.html   dsrw.html 
[root@dsrw ~]# rename html php *.html
[root@dsrw ~]# ls
index.php  dsrw.php 
© 版权声明
THE END
喜欢就支持一下吧
点赞11 分享
评论 抢沙发
头像
欢迎您留下宝贵的见解!
提交
头像

昵称

取消
昵称

    请登录后查看评论内容