mirror of
https://github.com/serai-dex/serai.git
synced 2024-11-17 09:27:36 +00:00
8 lines
109 B
Bash
8 lines
109 B
Bash
#!/bin/sh
|
|||
|
|||
date +%s > /temp/genesis
|
|||
GENESIS=$(cat /temp/genesis)
|
|||
echo "Genesis: $GENESIS"
|
|||
|
|||
tail -f /dev/null
|