Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

Development Tools Introduction to the Terminal Common Commands Working with Files

Fill 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

Steven Parker
Steven Parker
229,608 Points

Please give it your best "good faith" try and show your attempt here.

Jamie Reardon
seal-mask
.a{fill-rule:evenodd;}techdegree seal-36
Jamie Reardon
Treehouse Project Reviewer

To follow up Steven Parker's comment,

Hint: Pager programs are the likes of more and less. So use one of those commands.

2 Answers

To 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

treehouse:~/workspace/documents$ ls profile.txt resume.txt treehouse:~/workspace/documents$

Answer: more profile.txt