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

Categories

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

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

1 Answer

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>

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...