1.显示当前工作路径
pwd-----------显示当前路径
pwd -P-------显示真实的物理路径
pwd -L-------默认为显示链路路径
↓首先创建一个软连接然后分别用两个参数查看路径
[root@centos6 app]# ln -s /etc/sysconfig/network-scripts/ link
[root@centos6 app]# cd link1
[root@centos6 link]# pwd
/app/link
[root@centos6 link]# pwd -P
/etc/sysconfig/network-scripts
2. 目录名与基名
- 基名名为路径中最后一个文件夹的名字
- 目录除基名外都属于目录名
[root@centos6 app]# dirname /etc/sysconfig/network-scripts/
/etc/sysconfig
[root@centos6 app]# basename /etc/sysconfig/network-scripts/
network-scripts
3. 路径与路径相关的变量
[root@centos6 li]# echo $PWD #当前路径
/home/li
[root@centos6 li]# echo $OLDPWD #上一次目录的路径
/root
[root@centos6 li]#
4. LS命令练习
[root@centos6 li]# ls -R /etc/sysconfig/
[root@centos6 app]# ls -S
[root@centos6 app]# ls -d
[root@centos6 app]# ls -t
[root@centos6 app]# ls -X
[root@centos6 app]# ls -u
[root@centos6 app]# ls -U
[root@centos6 app]# ls -R
[root@centos6 app]# ls -1
1.pdf
1.txt
2.pdf
2.txt
当使用文件通配符时,ls命令默认会输出目录及子文件子目录
5. 文件与文件夹的状态
- atime:访问时间,读取文件内容
- mtime: 修改时间, 改变文件内容(数据)
- ctime: 改变时间, 元数据发生改变(属性)
atime访问时间的更新并不是实时的。
服务器为了避免频繁的更新atime而造成服务器的压力,所以从CentOS6之后atime不是实时更新。
1.在motime大于atime时更新
2.在atime大于一天未更新时更新
通过ls命令来查看文件的时间状态
[root@centos6 app]# ll test --time=atime
-rw-r--r--. 1 root root 0 Jul 19 21:18 test
[root@centos6 app]# ll test --time=ctime
-rw-r--r--. 1 root root 0 Jul 19 21:18 test
[root@centos6 app]# stat
stat: missing operand
Try `stat --help' for more information.
[root@centos6 app]# stat .
File: `.'
Size: 4096 Blocks: 8 IO Block: 4096 directory
Device: 803h/2051d Inode: 2 Links: 12
Access: (0755/drwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root)
Access: 2017-07-19 19:40:34.696577732 +0800
Modify: 2017-07-19 19:40:34.077573736 +0800
Change: 2017-07-19 19:40:34.077573736 +0800
6. 创建文件和刷新时间
- 刷新文件的atime、mtime、ctime
[root@centos6 down]# touch 1.txt
- 仅刷新文件的mtime和ctime
[root@centos6 down]# touch -m 1.txt
- 仅刷新文件的atime和ctime
[root@centos6 down]# touch -a 1.txt
- 指定文件的atime与mtime
[root@centos6 down]# touch -t "201810101020" 1.txt
时间格式[[CC]YY]MMDDhhmm[.ss]
- 如果文件不存在则不创建
[root@centos6 down]# touch -c test.txt
7. CP命令
-
CP为复制命令
- 直接复制与覆盖前询问
[root@centos6 app]# cp wnejian.sh ./back/
[root@centos6 app]# cp -i wnejian.sh ./back/
cp: overwrite `./back/wnejian.sh'? y
- 递归复制文件的内容与文件夹
[root@centos6 app]# cp -r ../app ./back/
- cp归档
[root@centos6 app]# cp a file ./back/
- CP命令对于连接文件,默认复制真实路径的物理文件
[root@centos6 app]# ls -la /etc/grub.conf
lrwxrwxrwx. 1 root root 22 Jul 14 11:18 /etc/grub.conf -> ../boot/grub/grub.conf
[root@centos6 back]# cp /etc/grub.conf .
[root@centos6 back]# ls -al grub.conf
-rw-------. 1 root root 771 Jul 20 14:04 grub.conf
[root@centos6 back]# ls -al /boot/grub/grub.conf
-rw-------. 1 root root 771 Jul 14 11:18 /boot/grub/grub.conf
[root@centos6 back]#
- 复制链接文件而不复制连接本身
[root@centos6 back]# cp -P /etc/grub.conf .
- 只复制连接名,不复制原文件
[root@centos6 back]# cp -d /etc/grub.conf .
- 复制文件的保留mode(权限),ownership(主属群组),timestamp(时间戳)属性
[root@centos6 back]# cp -P /etc/grub.conf .
- 显示出复制的过程
[root@centos6 back]# cp -av /etc/sysconfig/ ./wenjian/
`/etc/sysconfig/' -> `./wenjian/sysconfig'
`/etc/sysconfig/sysstat.ioconf' -> `./wenjian/sysconfig/sysstat.ioconf'
......
8.移动和剪切
mv -i
mv -f
9.删除
rm -i 交互式
rm -f 强制
rm -r 递归
rm --no-preserve-root 删除根
10. 目录操作
- 显示目录树
tree -d 只显示目录
tree -L leve 显示指定层级数目
tree -P
- 创建目录
mkdir -p 递归创建
mkdir -v 显示详细信息
mkdir -m 制定权限
- 删除目录
rmdir -p 删除递归
rmdir -v 显示详细信息
inode节点表
[root@centos6 app]# ls -il ./
. 软连接与硬链接
[root@centos6 app]# ll /app/link1/
total 228
-rw-r--r--. 1 root root 231 Jul 19 10:55 ifcfg-eth0
-rw-r--r--. 1 root root 164 Jul 19 10:58 ifcfg-eth1
-rw-r--r--. 1 root root 254 Jan 18 20:10 ifcfg-lo
........
[root@centos6 app]# ll /app/link1
lrwxrwxrwx. 1 root root 31 Jul 19 20:13 link1 -> /etc/sysconfig/network-scripts/
readlink 查看链接文件