10 lines
175 B
Bash
Executable File
10 lines
175 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Author by : Daniel Heras
|
|
# Mail : dani.heras@hotmail.com
|
|
|
|
day="$(date +"%a %d")"
|
|
month="$(date +"%B")"
|
|
hour="$(date +"%R")"
|
|
echo " $hour at $day of $month "
|