linux基础之增删改查

1.增删改查

1.1新建
文件 touch test
目录 mkdir mydir
mkdir -p /father/son/grandson

1.2复制
将新建的test 文件复制到目录中 cp test father/son/grandson
复制目录要加 -R或者-r cp -r father family

1.3删除
删除普通文件 rm test
删除只读文件 rm -f test
删除目录 rm -r family

1.4移动文件
mv 原目录文件 目的目录
touch file
mkdir Documents
mv file Documents
重命名文件
mv 原文件 新文件名
mv file newfile

1.5查找文件
whereis 简单快速
whereis who

which 小而精
which man

locate 快而全
sudo apt-get install locate
locate /bin/sh

find 精而细
sudo find /etc/ -name interface
-atime 最后访问时间
-ctime 最后修改文件内容的时间
-mtime 最后修改文件属性的时间

你可能感兴趣的:(linuxnginx)