1
0
Fork 0
mirror of https://github.com/RobotechLille/cdf2018-principal synced 2024-07-03 16:18:15 +02:00
cdf2018-principal/chef/run.sh

10 lines
172 B
Bash
Raw Normal View History

2018-02-07 17:57:01 +01:00
#!/bin/sh
EXEC=bin/premier
LOGFILE="${2:=run.log}"
# Logging
"$EXEC" 2>&1 | while read line; do
echo "$(cat /proc/uptime | cut -d ' ' -f 1) $line" >> "$LOGFILE"
done