我试图在同一行中打印
VARI
的值,后跟逗号,以便我可以拥有这些值的 csv 文件,但我无法保存 的值
VARI = 'cat filename | head -1 | cut -d, -f${i}'
i=0
while (( i<130)) ;
do
if [[ $i -eq 1 || $i -eq 9 || $i -eq 12 || $i -eq 23 || $i -eq 25 || $i -eq 29 ]]
then
VARI = 'cat filename | head -1 | cut -d, -f${i}'
echo "$VARI ,"
fi
let i=$i+1;
done
预期输出为
4,abc,5,8,xyz,9
请让我知道我做错了什么,谢谢!
使用反引号(或可以嵌套的
$()
),而不是单引号:
VARI=`cat filename | head -1 | cut -d, -f${i}` # or:
VARI=$(cat filename | head -1 | cut -d, -f${i})
确保变量名称、等号和变量值之间没有空格。
VAR = x # executes program "VAR" with 2 parameters: "=" and "x"
VAR =x # executes program "VAR" with a single parameter: "=x"
VAR= x # executes program "x" with environment variable "VAR" set to an empty value
VAR=x # assigns value "x" to shell variable "VAR"