You've already forked devops-exercises
mirror of
https://github.com/bregman-arie/devops-exercises.git
synced 2025-07-15 23:54:32 +02:00
Add Terraform and Linux questions and exercises
Also updated the script that counts questions to actually update the number in README.md
This commit is contained in:
28
topics/linux/exercises/navigation/solution.md
Normal file
28
topics/linux/exercises/navigation/solution.md
Normal file
@ -0,0 +1,28 @@
|
||||
# Navigation
|
||||
|
||||
## Requirements
|
||||
|
||||
1. Linux :)
|
||||
|
||||
## Objectives
|
||||
|
||||
1. Change directory to `/tmp`
|
||||
2. Move to parent directory
|
||||
3. Change directory to home directory
|
||||
4. Move to parent directory
|
||||
5. Move again to parent directory
|
||||
1. Where are you at? Verify with a command
|
||||
6. Change to last visited directory
|
||||
|
||||
## Solution
|
||||
|
||||
```
|
||||
cd /tmp
|
||||
cd ..
|
||||
cd ~
|
||||
cd ..
|
||||
cd ..
|
||||
# root (/)
|
||||
pwd
|
||||
cd -
|
||||
```
|
Reference in New Issue
Block a user