我正在使用本教程使用 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
发现这个命令根本不起作用。有什么理由让它不起作用?