document structure refatcoring
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
parent
8cc7738d3c
commit
3d91b426af
19
docs/bash.md
Normal file
19
docs/bash.md
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
# Bash Commands
|
||||||
|
|
||||||
|
## Find
|
||||||
|
### Find and delete
|
||||||
|
Find and delete command
|
||||||
|
```bash
|
||||||
|
find / -name .DS_Store -delete
|
||||||
|
```
|
||||||
|
|
||||||
|
Alternative find and delete command
|
||||||
|
```bash
|
||||||
|
find / -name ".DS_Store" -exec rm {} \;
|
||||||
|
```
|
||||||
|
the previous command is due that not all `find` have a delete funcion but with overhead of new process `-exec`.
|
||||||
|
|
||||||
|
Find and delete with no overhead
|
||||||
|
```bash
|
||||||
|
find / -name .DS_Store -print0 | xargs -0 rm
|
||||||
|
```
|
1
docs/cd.md
Normal file
1
docs/cd.md
Normal file
@ -0,0 +1 @@
|
|||||||
|
# Continuous delivery
|
1
docs/ci.md
Normal file
1
docs/ci.md
Normal file
@ -0,0 +1 @@
|
|||||||
|
# Continuous integration
|
@ -1,5 +0,0 @@
|
|||||||
# CI / CD
|
|
||||||
|
|
||||||
## Continuous integration
|
|
||||||
|
|
||||||
## Continuous delivery
|
|
1
docs/csharp.md
Normal file
1
docs/csharp.md
Normal file
@ -0,0 +1 @@
|
|||||||
|
# C#
|
@ -1,3 +1,2 @@
|
|||||||
# Linux
|
# Linux
|
||||||
|
|
||||||
## Arch Linux and X220
|
|
15
mkdocs.yml
15
mkdocs.yml
@ -3,3 +3,18 @@ theme:
|
|||||||
name: 'material'
|
name: 'material'
|
||||||
repo_url: https://git.r4o.ch/francesco/mkdocs/
|
repo_url: https://git.r4o.ch/francesco/mkdocs/
|
||||||
docs_dir: 'docs'
|
docs_dir: 'docs'
|
||||||
|
|
||||||
|
# Page tree
|
||||||
|
nav:
|
||||||
|
- Home: index.md
|
||||||
|
- Programming:
|
||||||
|
- Python: python.md
|
||||||
|
- C#: csharp.md
|
||||||
|
-
|
||||||
|
- CI / CD:
|
||||||
|
- CI: ci.md
|
||||||
|
- CD: cd.md
|
||||||
|
- Docker: docker.md
|
||||||
|
- Linux: linux.md
|
||||||
|
- Network:
|
||||||
|
-
|
Loading…
Reference in New Issue
Block a user