linux系统下找出当前目录下2天内新创建的所有json文件,把命令书写出来。
如果扩展名是.json可以用下面的脚本
find . -ctime -2 | grep .json
find ./ -type f -name '*.json' -ctime -2
find . - type f -name "*.json" -ctime -2