From 683d1018180c8b46045b31bcc6f8ee266733bc21 Mon Sep 17 00:00:00 2001 From: Jianmin W <2155155+jianminww@users.noreply.github.com> Date: Thu, 28 Dec 2023 10:42:49 +0800 Subject: [PATCH] Update Linux-Dev-Basics.md Add missing extension name of tar.gz file. --- Advanced-Issues/Linux-Dev-Basics.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Advanced-Issues/Linux-Dev-Basics.md b/Advanced-Issues/Linux-Dev-Basics.md index 30074f7..de11899 100644 --- a/Advanced-Issues/Linux-Dev-Basics.md +++ b/Advanced-Issues/Linux-Dev-Basics.md @@ -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: