`` 反引号允许你将shell命令的输出赋值给变量 下面的例子是以时间为例子的#!/bin/bash testing=`date` echo "this date and time are :$testing"