8 lines
197 B
Bash
Executable File
8 lines
197 B
Bash
Executable File
#!/bin/sh
|
|
|
|
echo
|
|
echo "This will tail the recorder log file."
|
|
echo "Type in password for pypo user (default password is 'pypo'):"
|
|
|
|
su -l pypo -c "tail -F /var/log/airtime/recorder/log/main/current"
|