PHP
·
发表于 6年以前
·
阅读量:8496
#!/bin/bash
#using the backtick character 会把反引号里面当作一条命令来执行
testing=`date`
echo "The date and time are:$testing"