Reputation: 105
I have a mission to read information from some file with PuTTY. please login to: 'somewhere' there you will find a file named 'INSTUCTIONS' with instructions on how to proceed. How i do it? Thanks.
Upvotes: 2
Views: 39398
Reputation: 745
Assuming you're SSHing onto a unix box of some kind, use "ls" to browse the file structure. Find the file, then use "cat". e.g.: cat INSTRUCTIONS.txt
Upvotes: 9