mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-24 16:42:05 +00:00
6 lines
74 B
Bash
6 lines
74 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
while read read_data;
|
||
|
do printf "Key $read_data\n";
|
||
|
done
|