Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix: Add missing extension name of tar.gz file in Linux-Dev-Basics.md #6

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Advanced-Issues/Linux-Dev-Basics.md
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ curl -L https://github.com/openeuler-mirror/openEulerCodeHeat/raw/main/Advanced
The codes are packed as tarball(\*.tar) and zipped using gzip(\*.gz), this is quite common in the Linux and open source world, let's unzip and untar them:

```
tar -zxvf awsome_codes && cd awsome_codes
tar -zxvf awsome_codes.tar.gz && cd awsome_codes
```

Checkout what we got with `ls -l`, it should be like this:
Expand Down