recursive 하게 내부 directory 에 있는 파일들까지 모조리 cat 명령어로 출력하는 명령어는 다음과 같음

예를 들어 /home/eye/mypath 에 포함된 모든 json 파일을 출력하려면

 

find /home/eye/mypath -name '*.json' -exec cat {} \; > all.json

 

stackoverflow.com/a/24069223

 

Recursive cat all the files into single file

I have bunch of files sitting in folders like data\A\A\A\json1.json data\A\A\A\json2.json data\A\A\B\json1.json ... data\Z\Z\Z\json_x.json I want to cat all the jsons into one single file?

stackoverflow.com

 

+ Recent posts