我使用此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
发现此命令根本不起作用。有什么理由不起作用?