博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
查找特定文件,修改为当前系统时间
阅读量:6544 次
发布时间:2019-06-24

本文共 659 字,大约阅读时间需要 2 分钟。

 #find . -name '*.rpm' -exec ls -l {} \;

-rw-r--r-- 1 root root 771236 12月 12 2015 ./123/lftp-4.0.9-1.el6.x86_64.rpm
-rw-rw-r-- 1 root root 771236 12月 12 2015 ./lftp-4.0.9-1.el6.x86_64.rpm
-rw-rw-r-- 1 root root 154392 12月 12 2015 ./vsftpd-2.2.2-11.el6.x86_64.rpm

# find . -name '*.rpm' -exec touch {} \;

find . -name '*.rpm' -exec ls -l {} \;

-rw-r--r-- 1 root root 771236 7月  20 16:28 ./123/lftp-4.0.9-1.el6.x86_64.rpm
-rw-rw-r-- 1 root root 771236 7月  20 16:28 ./lftp-4.0.9-1.el6.x86_64.rpm
-rw-rw-r-- 1 root root 154392 7月  20 16:28 ./vsftpd-2.2.2-11.el6.x86_64.rpm

 

问题:找出目录下的所有软连接并删除

find . -type -l -exec rm {} \;

find . -maxdepth 1 -type l -exec ls -l {} \;

 

转载地址:http://dgodo.baihongyu.com/

你可能感兴趣的文章
python threading
查看>>
谷安天下2013年6月CISA考前辅导 第一季
查看>>
ARM程序规范
查看>>
我的友情链接
查看>>
Qt下的OpenGL 编程(8)文字、FPS、动画
查看>>
Android开发入门系列
查看>>
说清楚讲明白vxlan在openstack中的使用场景
查看>>
RHCE 学习笔记(36) - MariaDB
查看>>
文件删除封装,懒得以后再写了
查看>>
Linux 脚本之用户创建
查看>>
Mysql字段类型设计相关问题!
查看>>
Xshell 密钥登陆
查看>>
所见不为真--图片格式文件检测python
查看>>
分享几种常用的嵌入式Linux GUI及其特点—干货
查看>>
Confluence 6 "Duplicate Key" 相关问题解决
查看>>
第18章 使用MariaDB数据库管理系统
查看>>
浅谈MySQL的B树索引与索引优化
查看>>
数据库迁移工具
查看>>
【喜报】HCIE--PASS !最可怕的敌人,就是没有坚强的信念!
查看>>
想学前端,为什么不看这些书呢?
查看>>