4 examples for tail
# View the end of a file and "follow" it. This is especially useful for watching changes in a log file. tail -f logFile.txt
# View the end of a file, and "follow" it. If the file is replaced or truncated, follow the new file that is now pointed to by the filename tail -F logFile.txt