ksh - 如何在变量中插入echo命令

时间:2013-05-16 08:01:54

标签: variables insert ksh

如何在变量中插入此命令行? :

echo "abc:def" | awk -F':' '{print "field1: "$1 "\nfield2: "$2}'

提前致谢

2 个答案:

答案 0 :(得分:0)

请试试这个

testVar=`echo "abc:def" | awk -F':' '{print "field1: "$1 "\nfield2: "$2}'`
echo $testVar

答案 1 :(得分:0)

使用eval

eval `echo "abc:def" | awk -F':' '{print "export field1="$1 "\nexport field2="$2}'`