随笔分类 - shell
摘要:layout: post title: Shell脚本编程——快速删除doker images subtitle: version 1.0 tags: [linux, shell, automation] comments: true Shell脚本编程——快速删除doker images(v1)
阅读全文
摘要:layout: post title: Linux批量替换文本 subtitle: 脚本运维 tags: [Linux, Performance, automation, 自动化运维] Linux下快速批量替换文本 有一批配置文件,名字以4xxxvf开头,以dev0,dev1,dev2结尾,形式上例
阅读全文
摘要:文本将介绍DPDK与Pktgen的安装。 安装包下载 DPDK与DPDK-Pktgen下载: # git clone https://dpdk.org/git/dpdk # git clone http://dpdk.org/git/apps/pktgen-dpdk 安装DPDK 首先安装DPDK的
阅读全文
摘要:如何查找一个目录中所有c文件的行数 面试题问到了一题,如何统计wc文件夹下所有文件的行数,包括了子目录。 最后在 https://blog.csdn.net/a_ran/article/details/43939261 中找到了方法。 wc -l `find . -name *.c` find 会递
阅读全文