文件名称:tfr:命令行工具可逐行搜索图案并打印替换行
文件大小:10KB
文件格式:ZIP
更新时间:2024-06-02 23:53:29
JavaScript
文字变形金刚 在文件中逐行搜索模式,并输出可以包含任何捕获组的替换字符串。 安装 npm install --global tfr 例子 # prints out all the lines that look like URLs as links tfr '^(https?://.*)' -r '$1' example.txt # find all the files that have a parent directory called lib find . | tfr '\/lib\/' -r '$_' # print how many 500 errors are in the access logs per hour cat access.log | trf '^(.*?T\d+).* 500 ' | sort | uniq -c 用法 tfr
【文件预览】:
tfr-master
----.gitignore(13B)
----package.json(807B)
----LICENSE(1KB)
----index.js(3KB)
----README.md(1KB)
----yarn.lock(22KB)