跳到主要內容

Command Line 移除包含特定文字的 json 檔。

[code]grep XXXXXXX *.json -H -l | xargs -I file mv file /tmp[/code]

Command Line 移除包含特定文字的 json 檔。
[code]
grep XXXXXXX *.json -H -l | xargs -I file mv file /tmp
[/code]