文件名称:inplace:用于就地编辑的流编辑器适配器
文件大小:4KB
文件格式:ZIP
更新时间:2024-06-18 01:57:19
C
流编辑器适配器:就地编辑文件 一个命令行工具,用于使用不知道如何自己做的流编辑器对文件进行就地流编辑。 $ inplace somefile sed -e 's/foo/bar/g' 这类似于 GNU 海绵 (1) 命令,其用法如下: $ sed -e 's/foo/bar/g' somefile | sponge somefile 还支持海绵使用: $ sed -e 's/foo/bar/g' | inplace somefile 就地也可以与 xargs 一起使用。 此处的示例正在查找具有名为 foo 的字段的 json 文件,并将该字段设置为空列表。 $ find -name '*.json' | xargs grep '"foo":' | xargs -i@ -- inplace @ jq 'foo|=[]' 除非使用-w选项,否则就地编辑的文件将被重命名到位,然后
【文件预览】:
inplace-master
----README.md(2KB)
----inplace.c(9KB)