2022-08-29 09:54:31 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
export LNAVSECURE=1
|
|
|
|
export TERM=xterm-256color
|
|
|
|
|
2022-08-30 20:54:11 +00:00
|
|
|
timeout --foreground --kill-after=30s 5m lnav \
|
2022-09-15 01:50:00 +00:00
|
|
|
-d "/tmp/$(echo "tutorial1."$(date "+%Y-%m-%dT%H-%M-%S")".$$.log")" \
|
2022-08-29 17:22:23 +00:00
|
|
|
-I /tutorials/tutorial-lib \
|
|
|
|
/tutorials/tutorial1/tutorial1.glog \
|
|
|
|
/tutorials/tutorial1/index.md#tutorial-1
|
2022-08-30 20:23:15 +00:00
|
|
|
|
|
|
|
if [ $? = 124 ]; then
|
|
|
|
echo "error: reached connection time limit, reconnect if you're not a bot."
|
|
|
|
else
|
|
|
|
echo "Thanks for trying out lnav! Have a nice day!"
|
|
|
|
fi
|