computer-scienceangular-roadmapbackend-roadmapblockchain-roadmapdba-roadmapdeveloper-roadmapdevops-roadmapfrontend-roadmapgo-roadmaphactoberfestjava-roadmapjavascript-roadmapnodejs-roadmappython-roadmapqa-roadmapreact-roadmaproadmapstudy-planvue-roadmapweb3-roadmap
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
867 B
23 lines
867 B
# Linux Navigation Basics: Basic Commands |
|
|
|
Linux Navigation Basics is about using simple commands to move around and manage files on your computer. For example, cd lets you go into different folders, ls shows you what files and folders are inside, and pwd tells you where you are currently. These commands help you easily find and organize your files. |
|
|
|
```bash |
|
# Change directory |
|
cd /path/to/directory |
|
|
|
# Lists files and directories in the current directory. |
|
ls |
|
|
|
# View current working directory |
|
pwd |
|
|
|
# Displays the manual page for a command |
|
man ls |
|
``` |
|
|
|
In this brief introduction, we will discuss and explore these basic commands and how they aid us in navigation around the Linux environment. |
|
|
|
Learn more from the following resources: |
|
|
|
- [@article@Linux pwd Command: Directory Displaying](https://labex.io/tutorials/linux-file-and-directory-operations-17997)
|
|
|