mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-03 04:52:10 +00:00
6 lines
86 B
Bash
6 lines
86 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
while read read_data;
|
||
|
do printf "$read_data\tKey $read_data\n";
|
||
|
done
|