ROOT=$(readlink -fn $(dirname $0)/.. )find $ROOT -not -wholename \*.tox/\* -and \( -name \*.sh -or -name \*rc -or -name functions\* \) -print0 | xargs ...
分类:
系统相关 时间:
2020-06-10 19:22:10
阅读次数:
94
今天在使用find命令查找文件时报错: 查找命令:find /var/www/html/typecho/admin/ -name *.php -type f -print | xargs file 报错如下: find: paths must precede expression: category ...
分类:
其他好文 时间:
2020-06-09 09:59:16
阅读次数:
251
Mit6.828/6.S081 fall 2019的Lab1是Unix utilities,主要内容为利用xv6的系统调用实现sleep、pingpong、primes、find和xargs等工具。本文对各程序的实现思路及xv6的系统调用流程进行详细介绍。 前言 在实验之前,推荐阅读一下官网LEC1 ...
分类:
其他好文 时间:
2020-06-07 14:41:18
阅读次数:
128
管道常用于进程间通信 即上一个进程的stdout作为下一个进程的stdin(直接对接) 在linux中 | 符号即为管道符号,将上一个命令的stdout作为下一个命令的stdin 例: 将当前目录下含有123的文件全部删除(单输入) ls | grep 123 | xargs rm 将当前目录下含有 ...
分类:
系统相关 时间:
2020-06-07 12:49:30
阅读次数:
96
管道( | ):将上一个命令的标准输出结果作为后一个命令的标准输入(进程间的通讯,只在同意终端) 命令管道:可用于任何进程之间的通讯(可在不同终端间),用mkfifo命令创建 [root@rhel8 ~]# mkfifo /tanbaobao/p_file [root@rhel8 ~]# ls -l ...
分类:
系统相关 时间:
2020-06-05 19:19:48
阅读次数:
116
xargs 由于好多的命令不支持管道,但是工作有需要用到,这个时候xargs就可以派上用场 xargs 把一个命令的输出结果,一个一个的传递给后面要执行的命令 有些命令不支持太多的字符,也可以使用xargs来传递 echo a{1..1000000}|xargs touch rm a{1..1000 ...
分类:
系统相关 时间:
2020-06-04 23:15:11
阅读次数:
141
提出 运行脚本调用其他程序有人值守可以用^C终止运行 若需自动化则要借助kill -9 [pid]终止进程,例如我们需要终止名称中含有app的进程 用法 ps -ef | grep app | grep -v grep | cut -c 9-15 | xargs kill -9 解析 ps -ef ...
分类:
系统相关 时间:
2020-06-03 20:40:41
阅读次数:
113
1. 统计项目代码行数 find . "(" -name "*.cc" -or -name "*.cpp" -or -name "*.h" ")" -print | xargs wc -l 2. find & copy find <target-dir> -type f -name "<file-p ...
分类:
其他好文 时间:
2020-05-28 01:11:59
阅读次数:
94
一、Docker镜像操作基础命令[root@localhost~]#dockersearch镜像名称//搜索镜像(在dockerhub官网上进行查找)[root@localhost~]#dockerpull镜像名称//下载镜像(如果不指定镜像标签默认下载最新版的镜像)[root@localhost~]#dockerpush仓库名称/仓库账号/镜像名称//上传镜像[root@localhost~]#
分类:
其他好文 时间:
2020-05-24 09:16:51
阅读次数:
58
find查找信息 1、指定目录下查找指定文件(-i表示忽略大小写) find [指定目录] -name -i '*[文件名关键字]' 2、指定目录下查找指定文件的内容(-i表示忽略大小写) find [指定目录] -name '[文件名关键字]' | xargs grep -i '内容关键字' 3、 ...
分类:
系统相关 时间:
2020-05-23 09:46:09
阅读次数:
65