-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e862d79
commit 47f4bb3
Showing
20 changed files
with
550 additions
and
102 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
name: Page Deploy | ||
on: [push, pull_request] | ||
jobs: | ||
deploy: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Setup Python | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: '3.10' | ||
- name: Install peotry | ||
run: | | ||
python -m pip install --upgrade pip | ||
pip install poetry | ||
- name: Install dependencies | ||
run: | | ||
poetry install | ||
- name: Build site | ||
run: | | ||
poetry run mkdocs build --clean | ||
- name: Deploy to GitHub Pages | ||
uses: peaceiris/actions-gh-pages@v3 | ||
with: | ||
github_token: ${{ secrets.GITHUB_TOKEN }} | ||
publish_dir: site |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
# 引言 |
File renamed without changes.
File renamed without changes.
File renamed without changes.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
# 更多的文件操作shell命令 | ||
|
||
上一章我们介绍了linux文件系统下如何表示文件路径,然后介绍了什么时候pwd。这一章我将介绍更多的文件系统的`shell`命令。这些命令一般都有很多的参数,但是其中很多参数的功能并不常用而且理解起来也完全不困难,我在这里一一介绍的话就太无聊了。因此这里我只会介绍这些命令的常用功能,其他的命令行参数大家可以自己去搜索相关资料。 | ||
|
||
## 复制文件——cp | ||
|
||
文件系统关于文件操作的一个很重要的能力就是复制和移动文件。在有图形界面的文件系统中,我们可以很方便地使用拖动或者一些快捷键移动和复制文件。但是在`shell`当中,当然是使用指令。这里我们先介绍用于复制文件的指令`cp`(**c**o**p**y)。 | ||
|
||
### 基础用法 |
File renamed without changes.
File renamed without changes
File renamed without changes
File renamed without changes
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
site_name: Linux shell Tutorial | ||
nav: | ||
- Home: index.md |
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
[tool.poetry] | ||
name = "Linux-shell-Tutorial" | ||
version = "0.1.0" | ||
description = "Linux shell tutorial" | ||
authors = ["Crimmy <crimmypeng@gmail.com>"] | ||
|
||
[tool.poetry.dependencies] | ||
python = "^3.10" | ||
|
||
[tool.poetry.dev-dependencies] | ||
mkdocs = "^1.2.3" |
Empty file.