- 论坛徽章:
- 145
|
本帖最后由 jason680 于 2012-11-27 07:43 编辑
回复 18# shrimpj
shell command:
xxx -a "China-Unix shrimpj first question" -c x,y,z
in awk:
system("xxx -a \"China-Unix shrimpj first question\" -c x,y,z");
some string change to variable: (ex: x change to $2)
string: " ... -c x,y,z"
in awk: " ... -c x,y,z"
x change $2:
string: " ... -c " + $2 + ",y,z"
in awk: " ... -c "$2",y,z"
x, y, and z change to $2, $3, and $4
system("xxx -a \"China-Unix shrimpj first question\" -c "$2","$3","$4);
Note: ".... -c " + $2 + "," + $3 + "," + $4 |
|