I have code like this, which processes a CSV file:
#!/bin/bash
while read line
do
variable=$(echo $line | awk -F, '{print $2}')
echo $variable
done < ./file.csv
If the CSV file contains any
, when I run this command, the output text does not show the
.
How can I ensure that
is not deleted?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…