9 lines
175 B
Bash
9 lines
175 B
Bash
|
#!/bin/bash
|
||
|
# Not working on windows symlinks
|
||
|
DIR="$(realpath $(dirname "$(readlink -f "$0")")/..)"
|
||
|
|
||
|
LOG_FILE_PATH="${DIR}/log/nginx/access.log"
|
||
|
|
||
|
clear
|
||
|
|
||
|
tail -f $LOG_FILE_PATH
|