使用redis-cli -pipe读取csv文件时获取不正确的索引

时间:2016-05-31 14:23:53

标签: csv awk redis redis-cli

我使用此tutorial使用redis-cli -pipe读取CSV文件。

我的csv文件的结构是:

0,  col1  ,   col2  ,  col3  ,.......,  col20  
1,11222323, random- , ----ww ,......., text    

and so on

现在,我正在运行此命令:

awk -F, 'NR > 1{ print "SET", "\"Number_"$1"\"", "\""$0"\"" }' redis_csv_number_file_2.csv | src/redis-cli --pipe

发现此命令根本不起作用。有什么理由不起作用?

0 个答案:

没有答案