如何$2使用 awk 对文件的特定列(例如)执行字母数字验证?
$2
例如我试过:
awk -F, '{if ($10==(/[0-9a-zA-Z]/)) count+=1;} END {print count}' final.csv
我没有收到任何错误或结果。
awk
awk ×1