首页 > 代码库 > linux常用命令

linux常用命令

cd (打开目录)

cd  返回到用户主目录

cd .. 返回到上一级

 

grep(查找文件)

grep string test.log    查找并返回test.log里面包含string的行

grep -c string test.log    查找并返回test.log里面包含string的行数

grep -v string test.log    查找并返回test.log里面不包含string的行

 

cp(复制文件)

cp a/test.log b/test2.log  将文件夹a下面的test.log复制到文件夹b并命名为test2.log

cp -f a/test.log b/test2.log   无论test2.log是否存在,都强行复制并覆盖。

 

ls (显示目标列表)

ls              显示当前目录列表

ls --full            显示当前目录列表详细信息

ls  -R             显示当前目录列表及其子目录的列表

 

linux常用命令