6 lines
69 B
Bash
6 lines
69 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
log() {
|
||
|
echo -e "$(date +'%Y-%m-%d %T')" "$1:" "$2"
|
||
|
}
|