将一条命令的执行结果赋给一个变量的方法有:1、使用反引号``(数字键1左边的键,tab键上面,英文方式输入)如:a=`echo"helloworld"`;即将命令echo"helloworld"的输出赋给变量a2、可以使用$(())如:a=$(echo"helloworld")即将命令echo"helloworld"的输出赋给变量a