Skip to content
zero2vibecodelearn vibe coding

What tail -n does

Show the last 20 lines of a file — handy for logs.

tail-n20log.txt
  • tailcommand — last lines of a file
  • -nflag — how many lines
  • 20argument: a file, a folder, or text
  • log.txtargument: a file, a folder, or text

Explain other commands