码迷,mamicode.com
首页 > 系统相关 > 详细

linux常用命令

时间:2017-07-22 16:42:39      阅读:213      评论:0      收藏:0      [点我收藏+]

标签:分享   img   路径   常用命令   family   blog   hello   name   lin   

        1.复制文件夹

复制文件夹/usr/t1到/home/t2路径下

cp -r /usr/t1 /home/t2

直接强制覆盖

cp -rf /usr/t1 /home/t2

2.删除文件夹

rm -r /usr/t1

直接强制删除

rm -rf /usr/t1

3.查找文件路径

查找test和test1文件夹下t1_1的路径

find test test1 -name t1_1

技术分享

 4.在文件中查找内容

查找2.txt中包含hello的行及前后3行

grep -3 "hello" 2.txt

5.比较两个文件或者文件夹

diff dir1 dir2

技术分享

技术分享

6.修改文件或者文件夹的时间

touch *将当前目录下的文件或者文件夹时间修改为系统当前时间【不对子文件生效】

技术分享

7.排序和去重

sort b.txt | uniq
则把 b.txt 中的行排序并去掉重复的行,其结果为

技术分享

 

linux常用命令

标签:分享   img   路径   常用命令   family   blog   hello   name   lin   

原文地址:http://www.cnblogs.com/smileyes/p/6959339.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!