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 trialBashir 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,164 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,067 Pointstreehouse:~/workspace/documents$ ls profile.txt resume.txt treehouse:~/workspace/documents$
Answer: more profile.txt
Steven Parker
231,172 PointsSteven Parker
231,172 PointsPlease give it your best "good faith" try and show your attempt here.