7 lines
91 B
Bash
7 lines
91 B
Bash
#!/bin/bash
|
|
|
|
date=$(date +"%d.%m.%y")
|
|
time=$(date +"%H:%M:%S")
|
|
|
|
echo " $date $time"
|