Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Bashir Orfani
13,170 PointsFill in the blank to complete a command to view the contents of the profile.txt file using a page
Fill in the blank to complete a command to view the contents of the profile.txt file using a pager program

Jamie Reardon
Treehouse Project ReviewerTo follow up Steven Parker's comment,
Hint: Pager programs are the likes of more and less. So use one of those commands.

Tommy Gebru
30,152 PointsCheckout the first video in this lesson module https://teamtreehouse.com/library/viewing-files-with-less
2 Answers

Toluwalase Akintoye
Full Stack JavaScript Techdegree Graduate 22,958 PointsTo view the contents of a file on the command line, you would change your directory to match the location of the .txt file.
You can use nano or vim format. Then use the following command to open the file
nano profile.txt
or
vi profile.txt
. To read a file in pages, use more profile.txt
or less profile.txt

David Patrick
6,065 Pointstreehouse:~/workspace/documents$ ls profile.txt resume.txt treehouse:~/workspace/documents$
Answer: more profile.txt
Steven Parker
220,937 PointsSteven Parker
220,937 PointsPlease give it your best "good faith" try and show your attempt here.