mirror of
https://github.com/tstack/lnav
synced 2024-11-09 19:10:52 +00:00
16 lines
386 B
Bash
16 lines
386 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
export LNAVSECURE=1
|
||
|
export TERM=xterm-256color
|
||
|
|
||
|
timeout --foreground --kill-after=30s 10m lnav \
|
||
|
/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
|