8 lines
118 B
Plaintext
8 lines
118 B
Plaintext
|
|
#!/bin/bash
|
||
|
|
|
||
|
|
set -eu -o pipefail
|
||
|
|
|
||
|
|
# This script tails common logs
|
||
|
|
|
||
|
|
tail -f /home/yellowtent/platformdata/logs/box.log
|