lnav/docs/tutorials/playground/run.sh

17 lines
461 B
Bash
Raw Normal View History

2022-08-30 23:11:37 +00:00
#!/bin/bash
export LNAVSECURE=1
export TERM=xterm-256color
timeout --foreground --kill-after=30s 10m lnav \
2022-09-15 01:50:00 +00:00
-d "/tmp/$(echo "playground."$(date "+%Y-%m-%dT%H-%M-%S")".$$.log")" \
2022-08-30 23:11:37 +00:00
/tutorials/playground/logs \
/tutorials/playground/text \
/tutorials/playground/index.md#playground
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