08 2022 档案
摘要:# 打印修改时间大于7天的文件 并删除 find . -type f -mtime +7 | xargs rm -rf # 7天内修改的文件 find . -type f -mtime -7 | xargs rm -rf # 查找大于1G的文件 find / -type f -size +1G #
阅读全文
摘要:-- 交集 create table test_0803_1 as SELECT t1.fid,t1.gradecode,t1.checkid,t1.the_geom, -- st_intersection(t1.the_geom, t2.the_geom) geom FROM zsex_sjjzq
阅读全文