Skip to content

Latest commit

 

History

History
38 lines (26 loc) · 396 Bytes

basics.md

File metadata and controls

38 lines (26 loc) · 396 Bytes

Basics

Navigation

Print current directory:

pwd

List files and folders in current directory:

ls

Change directory:

cd path/to/file

Read an entire file:

cat path/to/file

Read a file bit by bit:

less path/to/file

Use the following commands with less:

  • Enter: Jump to next line
  • Space: Jump to next page
  • q: Quit