11 lines
178 B
Bash
11 lines
178 B
Bash
|
|
#!/bin/sh
|
||
|
|
set -x
|
||
|
|
|
||
|
|
echo "----------------------------" >> htyws.log
|
||
|
|
echo "$(date)" >> htyws.log
|
||
|
|
echo "----------------------------" >> htyws.log
|
||
|
|
|
||
|
|
nohup cargo run >> htyws.log &
|
||
|
|
|
||
|
|
|