Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
764 views
in Technique[技术] by (71.8m points)

linux - Recursive cat all the files into single file

I have bunch of files sitting in folders like

dataAAAjson1.json
dataAAAjson2.json
dataAABjson1.json
...
datajson_x.json

I want to cat all the jsons into one single file?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
find data/ -name '*.json' -exec cat {} ; > uber.json

a short explanation:

find <where> 
  -name <file_name_pattern> 
  -exec <run_cmd_on_every_hit> {} ; 
    > <where_to_store>

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...