mirror of
https://github.com/bunkerity/bunkerweb
synced 2026-05-19 06:58:20 +00:00
8 lines
126 B
Bash
8 lines
126 B
Bash
#!/bin/sh
|
|
|
|
function job_log() {
|
|
when="$(date '+[%d/%m/%Y %H:%M:%S]')"
|
|
what="$1"
|
|
echo "$when $what" >> /var/log/jobs.log
|
|
}
|
|
|