mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-21 23:21:59 +00:00
8 lines
93 B
Bash
Executable File
8 lines
93 B
Bash
Executable File
#!/bin/bash
|
|
|
|
ls -1 */results/*.json | while read file
|
|
do
|
|
cat "${file}"
|
|
echo ','
|
|
done
|