mirror of https://github.com/fengyuhetao/shell.git
6 lines
96 B
Bash
6 lines
96 B
Bash
|
#!/bin/bash
|
||
|
#using the backtick character
|
||
|
|
||
|
testing=`date`
|
||
|
echo "The date and time are:$testing"
|