From deca1ae5680d0c3bd59a9db28bf02cfedf443b90 Mon Sep 17 00:00:00 2001 From: Zhao Xin <7176466@qq.com> Date: Sat, 3 Sep 2022 23:30:28 +0800 Subject: [PATCH] =?UTF-8?q?=E6=96=B0=E5=BB=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- source/_posts/Linux/常用命令.md | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 source/_posts/Linux/常用命令.md diff --git a/source/_posts/Linux/常用命令.md b/source/_posts/Linux/常用命令.md new file mode 100644 index 0000000..4216eaa --- /dev/null +++ b/source/_posts/Linux/常用命令.md @@ -0,0 +1,18 @@ +--- +title: 常用命令 +categories: + - Linux +keywords: + - Linux + - 终端 + - 命令 +tags: + - 终端 +date: 2022-09-03 23:20:14 +--- + +``` bash +alias ls="exa -aglF --color=always --group-directories-first --time-style long-iso --git" +alias df="df -h -x tmpfs" # 查看文件系统空间情况 +alias lsblk="lsblk -f" # 查看块设备 +```