mirror of
https://github.com/atlanticbiomedical/biomedjs.git
synced 2025-07-02 00:47:26 -04:00
6 lines
115 B
Bash
6 lines
115 B
Bash
![]() |
#!/bin/sh
|
||
|
while sleep 30; do
|
||
|
TIMESTAMP=$(date +"%m.%d.%Y at %H:%M:%S")
|
||
|
echo "$TIMESTAMP" >> logs/portal.log
|
||
|
done
|