当前位置:网站首页>Delete all files containing a keyword in the current path
Delete all files containing a keyword in the current path
2022-07-30 07:24:00 【A positive little salted fish】
1 Find all filenames containing keywords
Take "T5" as an example here
1. Use the ls command to find
ls -R | grep T5# -R show all files in the folder2. Use the find command
find . -name "*T5*"Second, delete the found files
find . -name "*T5*" |xargs rm -rfxargs - build and execute command lines from standard input
Three check if there are any files left
find . -name "*T5*"or
ls -R | grep T5# -R show all files in the folder边栏推荐
- FPGA parsing B code----serial 1
- 与所有 ARM 工具、软件兼容?韦斯佰瑞这款MCU内核值得关注!
- [Jiangsu University of Science and Technology Automation Association stm32F103c8t6] Notes [Initial 32 MCU and TIM timing interrupt initialization parameter configuration]
- Real-time waveform display of CAN communication data based on QT (serial eight) ==== "Sub function or new class calls ui control"
- QT每周技巧(3)~~~~~~~~~串口添加
- 闭包和作用域(你不知道的JS自用笔记)
- 基于QT的CAN通讯数据实时波形显示(连载八)====“子函数或新类调用ui控件”
- 高效插入map数据
- QT serial port dynamically displays a large number of data waveform curves in real time (5) ======== "Final perfect solution version"
- Map making of environmental impact assessment based on remote sensing interpretation and GIS technology (the latest guidelines)
猜你喜欢
随机推荐
关于报错vscode
《C陷阱和缺陷》void (*signal(int , void(*)(int)))(int)的深刻解读
Written before the official account - QT, ARM, DSP, microcontroller, power electronics and transmission!
Atmospheric particulate matter PMF source analysis
Diwen serial screen production (serialization 1) ===== preparation work
survivor区对象何时进入老年代(深入理解jvm中表述不准确的地方)
【江科大自化协stm32F103c8t6】笔记之【入门32单片机及GPIO初始化参数配置】
给Vscode配置ESlint语法检查 — ESLint 插件自动格式化设置(实现Ctrl+S 按照ESLint规则自动格式化代码)
重磅揭晓!第十四届深创赛福田预选赛区暨华秋第八届硬创大赛华南分赛区晋
昆仑通态屏幕制作(连载4)---基础篇(图形设定与显示,按钮灯)
查找Proj4js地图投影参数
昆仑通态屏幕制作(连载2)---基础篇(设定与显示,串口发送)
顺序二叉树---实现数组的二叉树前序遍历输出
【正点原子】sys.c、sys.h位带操作的简单应用
openssl 1.1.1 compile statement
VsCode打开终端的方法
Acwing刷题第一节
Explore the efficiency of make_shared
QT serial 4: LORA test platform based on QT and STM32H750 (3)
FPGA parsing B code----serial 1









