Heads up! To view this whole video, sign in with your Courses account or enroll in your free 7-day trial. Sign In Enroll
Start a free Courses trial
to watch this video
You've had to learn a syntax that's unique and sometimes strange. But the hard part's over! Now you should have a solid foundation for your future work in the terminal.
Thanks for joining us on this tour of the terminal!
- We've shown you how to issue commands in the shell.
- We've seen how to pass options and other arguments to commands:
ls -a mall/
- We've seen convenient shortcuts, like command history.
- As well as how to use tab completion to complete commands and arguments.
- We've learned how to switch between directories:
cd mall/
- And how directories are used to compose relative paths:
cat starbunks/menu.txt
- As well as absolute paths:
cd /home
- We've learned about shortcuts for directories.
- How
.
refers to the current directory:cd .
- How
..
refers to the parent directory:cd ..
- And how
~
refers to the current user's home directory:cd ~
- How
- We've seen how to use the shell's wildcard expansion to work with a group of files at once:
cat *.txt
- We've learned how to view the contents of files using the
less
pager:less cart.txt
- We've seen how to copy, move, and delete files and directories:
mv cart.txt park/
- And we've learned how to review details of these various programs using the built-in manual:
man mv
Project Ideas
Noah Veltman has created a murder mystery you can solve in the shell.
Further Reading
You can level up your shell skills using this guide.
Other Treehouse Courses
Now that you've mastered working in the Terminal, you're ready to learn some of those awesome programs that work at the command line!
Related Discussions
Have questions about this video? Start a discussion with the community and Treehouse staff.
Sign upRelated Discussions
Have questions about this video? Start a discussion with the community and Treehouse staff.
Sign up
You need to sign up for Treehouse in order to download course files.
Sign upYou need to sign up for Treehouse in order to set up Workspace
Sign up