Daily terminal challenge
Count the notes
Task: Count the lines in docs/notes.txt.
Hint: wc has a line-count flag.
wc -l docs/notes.txtFree beginner Linux course
Six short lessons, practical command guides, and browser terminal exercises with progress that follows you.
120 command guides15 categories
Course progress
0 of 6 complete
First lesson
Getting around
20 min lesson
Progress stays in this browser. Log in to back it up.
Daily terminal challenge
Task: Count the lines in docs/notes.txt.
Hint: wc has a line-count flag.
wc -l docs/notes.txtArchive files into a single .tar file, optionally compressed
tar -czvf backup.tar.gz ./projectSecure encrypted remote login and command execution
ssh user@server.example.comGet weekly Linux commands, tips, cheat sheets, and interactive exercises delivered to your inbox.
No spam. Unsubscribe anytime.
ls [OPTIONS] [FILE...]ls -laHistorical C program execution tracer (obsolete, superseded by gdb/strace/ltrace)
ctrace -o traced.c program.cPractice this →