- 1.显示当前工作目录的绝对路径
- 2.查看当前目录的所有内容信息
- 3.显示当前目录所有的文件和目录,包括隐藏的
- 4.以行的形式显示当前目录所有的文件和目录,包括隐藏的
- 5.显示/etc目录下,所有.conf结尾,且以m,n,r,p开头的文件或目录
- 6.显示 /var 目录下所有以 l 开头,以一个小写字母结尾,且中间出现至少一位数的文件或目录
- 7.显示/etc目录下以任意一位数字开头,且以非数字结尾的文件或目录
- 8.显示/etc/目录下以非字母开头,后面跟了一个字母及其它任意长度任意字符的文件或目录
- 9、显示/etc/目录下所有文件名以rc开头,并且后面是 0 到 6 中的数字,其它为任意字符的文件或目录
- 10、显示 /etc 目录下,所有以 .d 结尾的文件或目录
- 11.回到自己的家目录
- 12.回到当前目录的上一级目录
- 13.回到当前目录的上一级的上一级目录
- 14.在home下创建dog目录,只能创建一级目录
- 15.创建空文件 test.txt
- 16.同时创建子目录dir1,dir2,dir3
- 17.递归创建目录
- 18.复制1234.txt文件到新文件2345.txt
- 19.如果复制后的新文件名已存在会怎样呢?
- 20.为避免不知道有没有同名文件被覆盖,需要添加哪个选项
- 21.将file_1.txt文件从当前目录移动到其它目录,以/home/pungki/为例
- 22.将file1.txt重命名为file2.txt
- 23. 除了mv ,你还知道其他的修改文件名方式吗
- 参考链接
pwd
ls
ls -a
ls -al
[19:23:32 root@centos82[ data]#ls /etc/{m,n,r,p}*.conf
ls: cannot access '/etc/p*.conf': No such file or directory
/etc/man_db.conf /etc/mke2fs.conf /etc/nsswitch.conf /etc/resolv.conf
[19:28:22 root@centos82[ data]#ls /var/l*[0-9]*[[:lower:]]
ls: cannot access '/var/l*[0-9]*[[:lower:]]': No such file or directory
[19:29:30 root@centos82[ data]#ls /etc/[0-9]*[^0-9]
ls: cannot access '/etc/[0-9]*[^0-9]': No such file or directory
[19:31:31 root@centos82[ data]#ls /etc/[^a-Z][a-Z]*
ls: cannot access '/etc/[^a-Z][a-Z]*': No such file or directory
[19:33:32 root@centos82[ data]#ls /etc/rc[0-6]*
/etc/rc0.d:
/etc/rc1.d:
/etc/rc2.d:
/etc/rc3.d:
/etc/rc4.d:
/etc/rc5.d:
/etc/rc6.d:
[19:34:35 root@centos82[ data]#ls /etc/*.d
/etc/bash_completion.d:
authselect-completion.sh iprconfig redefine_filedir
/etc/binfmt.d:
/etc/chkconfig.d:
/etc/cron.d:
......
cd ~或者cd
cd ..
cd ../../
mkdir /home/dog
touch test.txt
[root@linuxcool ~]# mkdir dir1 dir2 dir3
[root@linuxcool ~]# mkdir -p linuxcool/dir
copy 1234.txt 2345.txt
文件会被覆盖并不会有提醒直接就执行成功了。
cp -i
$ mv file_1.txt /home/pungki/office
$ mv file_1.txt file_2.txt
rename
https://www.jianshu.com/p/86ad6eeb1a51
https://jingyan.baidu.com/article/14bd256e1ca9defb6c261259.html